Skip to content

Commit e6eeac5

Browse files
committed
Trivial message update
1 parent ebfcf05 commit e6eeac5

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
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

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

lib/utils/versioncheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
errors.append(_)
2323

2424
if errors:
25-
errMsg = "missing one or more core extensions (%s) " % (", ".join("'%s'" % _ for _ in errors))
25+
errMsg = "[%s] [CRITICAL] missing one or more core extensions (%s) " % (time.strftime("%X"), ", ".join("'%s'" % _ for _ in errors))
2626
errMsg += "most likely because current version of Python has been "
2727
errMsg += "built without appropriate dev packages"
2828
sys.exit(errMsg)

0 commit comments

Comments
 (0)