Skip to content

Commit 7d763e2

Browse files
committed
Potential patch for #5381
1 parent 4dd362c commit 7d763e2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/core/compat.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,3 +330,5 @@ def getargspec(func):
330330
spec = getfullargspec(func)
331331
kwargs = makelist(spec[0]) + makelist(spec.kwonlyargs)
332332
return kwargs, spec[1], spec[2], spec[3]
333+
334+
inspect.getargspec = getargspec

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.3.6"
23+
VERSION = "1.7.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)

0 commit comments

Comments
 (0)