Skip to content

Commit fbfed06

Browse files
committed
Fixes #5300
1 parent fdbc323 commit fbfed06

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.7.1.11"
23+
VERSION = "1.7.1.12"
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)

sqlmap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@
6464
from lib.core.common import setPaths
6565
from lib.core.common import weAreFrozen
6666
from lib.core.convert import getUnicode
67-
from lib.core.common import MKSTEMP_PREFIX
6867
from lib.core.common import setColor
6968
from lib.core.common import unhandledExceptionMessage
7069
from lib.core.compat import LooseVersion
@@ -73,6 +72,7 @@
7372
from lib.core.data import conf
7473
from lib.core.data import kb
7574
from lib.core.datatype import OrderedSet
75+
from lib.core.enums import MKSTEMP_PREFIX
7676
from lib.core.exception import SqlmapBaseException
7777
from lib.core.exception import SqlmapShellQuitException
7878
from lib.core.exception import SqlmapSilentQuitException

0 commit comments

Comments
 (0)