Skip to content

Commit 5b2c0f0

Browse files
committed
Trivial update
1 parent 548d98e commit 5b2c0f0

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
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.3.20"
23+
VERSION = "1.6.4.0"
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: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@
6161
from lib.core.common import MKSTEMP_PREFIX
6262
from lib.core.common import setColor
6363
from lib.core.common import unhandledExceptionMessage
64+
from lib.core.compat import LooseVersion
65+
from lib.core.compat import xrange
6466
from lib.core.data import cmdLineOptions
6567
from lib.core.data import conf
6668
from lib.core.data import kb
6769
from lib.core.datatype import OrderedSet
68-
from lib.core.compat import LooseVersion
69-
from lib.core.compat import xrange
7070
from lib.core.exception import SqlmapBaseException
7171
from lib.core.exception import SqlmapShellQuitException
7272
from lib.core.exception import SqlmapSilentQuitException
@@ -161,6 +161,7 @@ def main():
161161
# to an IPC database
162162
sys.stdout = StdDbOut(conf.taskid, messagetype="stdout")
163163
sys.stderr = StdDbOut(conf.taskid, messagetype="stderr")
164+
164165
setRestAPILog()
165166

166167
conf.showTime = True
@@ -579,5 +580,5 @@ def main():
579580
else:
580581
sys.exit(getattr(os, "_exitcode", 0))
581582
else:
582-
# cancelling postponed imports (because of Travis CI checks)
583+
# cancelling postponed imports (because of CI/CD checks)
583584
__import__("lib.controller.controller")

0 commit comments

Comments
 (0)