Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2c968f9

Browse files
committed
Closes #2007
1 parent 74d0315 commit 2c968f9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.7.1"
22+
VERSION = "1.0.7.2"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

sqlmap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def main():
201201
logger.error(errMsg)
202202
raise SystemExit
203203

204-
elif all(_ in excMsg for _ in ("No such file", "_'")):
204+
elif all(_ in excMsg for _ in ("No such file", "_'", "self.get_prog_name()")):
205205
errMsg = "corrupted installation detected ('%s'). " % excMsg.strip().split('\n')[-1]
206206
errMsg += "You should retrieve the latest development version from official GitHub "
207207
errMsg += "repository at '%s'" % GIT_PAGE

0 commit comments

Comments
 (0)