We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f08163f commit 2e75662Copy full SHA for 2e75662
2 files changed
lib/controller/handler.py
@@ -113,7 +113,7 @@ def setHandler():
113
conf.dbmsConnector.connect()
114
except Exception as ex:
115
if exception:
116
- raise
+ raise exception
117
else:
118
if not isinstance(ex, NameError):
119
raise
lib/core/settings.py
@@ -18,7 +18,7 @@
18
from thirdparty import six
19
20
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21
-VERSION = "1.3.5.38"
+VERSION = "1.3.5.39"
22
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
23
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
24
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
0 commit comments