Adjusted unhandled exception error message

This commit is contained in:
Bernardo Damele 2008-11-11 14:08:40 +00:00
parent e1385eb2bf
commit 13f76cfe3b

View File

@ -89,8 +89,8 @@ class sqlmapValueException(Exception):
def unhandledException(): def unhandledException():
errMsg = "unhandled exception in %s, please copy " % VERSION_STRING errMsg = "unhandled exception in %s, please copy " % VERSION_STRING
errMsg += "the command line and the following text and send by e-mail " errMsg += "the command line and the following text and send by e-mail "
errMsg += "to bernardo.damele@gmail.com. I will fix it as soon as " errMsg += "to sqlmap-users@lists.sourceforge.net. The developers will "
errMsg += "possible:\nsqlmap version: %s\n" % VERSION errMsg += "fix it as soon as possible:\nsqlmap version: %s\n" % VERSION
errMsg += "Python version: %s\n" % sys.version.split()[0] errMsg += "Python version: %s\n" % sys.version.split()[0]
errMsg += "Operating system: %s" % sys.platform errMsg += "Operating system: %s" % sys.platform
return errMsg return errMsg