Skip to content

Commit d5fb92e

Browse files
committed
Minor update
1 parent cd76f88 commit d5fb92e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty.six import unichr as _unichr
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.6.4.1"
23+
VERSION = "1.6.4.2"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

thirdparty/six/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ class _MovedItems(_LazyModule):
263263
MovedAttribute("reduce", "__builtin__", "functools"),
264264
MovedAttribute("shlex_quote", "pipes", "shlex", "quote"),
265265
MovedAttribute("StringIO", "StringIO", "io"),
266-
MovedAttribute("UserDict", "UserDict", "collections"),
266+
MovedAttribute("UserDict", "UserDict", "collections", "IterableUserDict", "UserDict"),
267267
MovedAttribute("UserList", "UserList", "collections"),
268268
MovedAttribute("UserString", "UserString", "collections"),
269269
MovedAttribute("xrange", "__builtin__", "builtins", "xrange", "range"),

0 commit comments

Comments
 (0)