diff --git a/lib/core/settings.py b/lib/core/settings.py index 5e157adca..583661971 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -20,7 +20,7 @@ from lib.core.enums import OS from thirdparty import six # sqlmap version (...) -VERSION = "1.10.7.132" +VERSION = "1.10.7.133" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE) diff --git a/tests/test_hashdb.py b/tests/test_hashdb.py index 0bc0756f8..e7475474e 100644 --- a/tests/test_hashdb.py +++ b/tests/test_hashdb.py @@ -104,7 +104,7 @@ class TestSerialized(_HashDBCase): # a stdlib dict subclass (e.g. OrderedDict) must round-trip its data rather than # silently degrade to its text repr (session codec: round-trip or fail loudly) from collections import OrderedDict - import six + from thirdparty import six val = OrderedDict([("b", 2), ("a", [1, {"n": "v"}])]) self.db.write("od", val, True) self.db.flush()