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

Skip to content

Commit 1d74036

Browse files
committed
Minor cosmetic fixes
1 parent 1a9aabf commit 1d74036

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

lib/controller/action.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ def action():
4646
errMsg += ". Do not specify the back-end DBMS manually, "
4747
errMsg += "sqlmap will fingerprint the DBMS for you"
4848
else:
49-
errMsg += ". Support for this DBMS will be implemented if "
50-
errMsg += "you ask, just drop us an email"
49+
errMsg += ". Support for this DBMS will be implemented at "
50+
errMsg += "some point"
5151

5252
raise sqlmapUnsupportedDBMSException, errMsg
5353

lib/core/exception.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,14 @@ class sqlmapValueException(Exception):
6868
pass
6969

7070
def unhandledException():
71-
errMsg = "unhandled exception in %s, please copy " % VERSION_STRING
72-
errMsg += "the command line and the following text and send by e-mail "
73-
errMsg += "to [email protected]. The developers will "
74-
errMsg += "fix it as soon as possible:\nsqlmap version: %s\n" % VERSION
71+
errMsg = "unhandled exception in %s, retry your " % VERSION_STRING
72+
errMsg += "run with the latest development version from the Subversion "
73+
errMsg += "repository. If the exception persists, please send by e-mail "
74+
errMsg += "to [email protected] the command line, the "
75+
errMsg += "following text and any information needed to reproduce the "
76+
errMsg += "bug. The developers will try to reproduce the bug, fix it "
77+
errMsg += "accordingly and get back to you.\n"
78+
errMsg += "sqlmap version: %s\n" % VERSION
7579
errMsg += "Python version: %s\n" % PYVERSION
7680
errMsg += "Operating system: %s" % PLATFORM
7781
return errMsg

0 commit comments

Comments
 (0)