mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Fixes CI/CD errors
This commit is contained in:
parent
8614059876
commit
f56ab884c7
2 changed files with 2 additions and 2 deletions
|
|
@ -20,7 +20,7 @@ from lib.core.enums import OS
|
|||
from thirdparty import six
|
||||
|
||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||
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)
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue