From 13f76cfe3bec88b40277dae39d871664b7c1158c Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Tue, 11 Nov 2008 14:08:40 +0000 Subject: [PATCH] Adjusted unhandled exception error message --- lib/core/exception.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/exception.py b/lib/core/exception.py index cb9d121fe..71973e2d4 100644 --- a/lib/core/exception.py +++ b/lib/core/exception.py @@ -89,8 +89,8 @@ class sqlmapValueException(Exception): def unhandledException(): errMsg = "unhandled exception in %s, please copy " % VERSION_STRING 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 += "possible:\nsqlmap version: %s\n" % VERSION + errMsg += "to sqlmap-users@lists.sourceforge.net. The developers will " + errMsg += "fix it as soon as possible:\nsqlmap version: %s\n" % VERSION errMsg += "Python version: %s\n" % sys.version.split()[0] errMsg += "Operating system: %s" % sys.platform return errMsg