mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Minor cosmetic fixes
This commit is contained in:
parent
1a9aabf49d
commit
1d74036ee3
|
@ -46,8 +46,8 @@ def action():
|
||||||
errMsg += ". Do not specify the back-end DBMS manually, "
|
errMsg += ". Do not specify the back-end DBMS manually, "
|
||||||
errMsg += "sqlmap will fingerprint the DBMS for you"
|
errMsg += "sqlmap will fingerprint the DBMS for you"
|
||||||
else:
|
else:
|
||||||
errMsg += ". Support for this DBMS will be implemented if "
|
errMsg += ". Support for this DBMS will be implemented at "
|
||||||
errMsg += "you ask, just drop us an email"
|
errMsg += "some point"
|
||||||
|
|
||||||
raise sqlmapUnsupportedDBMSException, errMsg
|
raise sqlmapUnsupportedDBMSException, errMsg
|
||||||
|
|
||||||
|
|
|
@ -68,10 +68,14 @@ class sqlmapValueException(Exception):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def unhandledException():
|
def unhandledException():
|
||||||
errMsg = "unhandled exception in %s, please copy " % VERSION_STRING
|
errMsg = "unhandled exception in %s, retry your " % VERSION_STRING
|
||||||
errMsg += "the command line and the following text and send by e-mail "
|
errMsg += "run with the latest development version from the Subversion "
|
||||||
errMsg += "to sqlmap-users@lists.sourceforge.net. The developers will "
|
errMsg += "repository. If the exception persists, please send by e-mail "
|
||||||
errMsg += "fix it as soon as possible:\nsqlmap version: %s\n" % VERSION
|
errMsg += "to sqlmap-users@lists.sourceforge.net the command line, the "
|
||||||
|
errMsg += "following text and any information needed to reproduce the "
|
||||||
|
errMsg += "bug. The developers will try to reproduce the bug, fix it "
|
||||||
|
errMsg += "accordingly and get back to you.\n"
|
||||||
|
errMsg += "sqlmap version: %s\n" % VERSION
|
||||||
errMsg += "Python version: %s\n" % PYVERSION
|
errMsg += "Python version: %s\n" % PYVERSION
|
||||||
errMsg += "Operating system: %s" % PLATFORM
|
errMsg += "Operating system: %s" % PLATFORM
|
||||||
return errMsg
|
return errMsg
|
||||||
|
|
Loading…
Reference in New Issue
Block a user