Procházet zdrojové kódy

Fix version check.

Gary van der Merwe před 10 roky
rodič
revize
72e5a5682c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      dulwich/tests/__init__.py

+ 1 - 1
dulwich/tests/__init__.py

@@ -29,7 +29,7 @@ import tempfile
 
 
 # If Python itself provides an exception, use that
 # If Python itself provides an exception, use that
 import unittest
 import unittest
-if sys.version < (2, 7):
+if sys.version_info < (2, 7):
     from unittest2 import SkipTest, TestCase as _TestCase
     from unittest2 import SkipTest, TestCase as _TestCase
 else:
 else:
     from unittest import SkipTest, TestCase as _TestCase
     from unittest import SkipTest, TestCase as _TestCase