Remove Python 2.6 code that's now obsolete. Fixes #3935

This commit is contained in:
Cyril Jouve
2019-01-31 13:47:56 +01:00
committed by Dave Page
parent 38feacd04d
commit cbd8f8236a
10 changed files with 24 additions and 87 deletions

View File

@@ -16,10 +16,7 @@ import six
from werkzeug.utils import find_modules
from pgadmin.utils import server_utils
if sys.version_info < (2, 7):
import unittest2 as unittest
else:
import unittest
import unittest
class TestsGeneratorRegistry(ABCMeta):