File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ sqlmap (0.6.2-1) stable; urgency=low
5959 database name, table name and column(s) are provided;
6060 * Updated the database management system fingerprint checks to correctly
6161 identify MySQL 5.1.x, MySQL 6.0.x and PostgreSQL 8.3;
62- * More user-friendly warnin messages.
62+ * More user-friendly warning messages.
6363
6464 -- Bernardo Damele A. G. <
[email protected] > Sun, 2 Nov 2008 19:00:00 +0000
6565
Original file line number Diff line number Diff line change 2626
2727import sys
2828
29+ from lib .core .settings import REVISION
2930from lib .core .settings import VERSION
3031from lib .core .settings import VERSION_STRING
3132
@@ -90,7 +91,8 @@ def unhandledException():
9091 errMsg = "unhandled exception in %s, please copy " % VERSION_STRING
9192 errMsg += "the command line and the following text and send by e-mail "
9293 errMsg += "to [email protected] . The developers will " 93- errMsg += "fix it as soon as possible:\n sqlmap version: %s\n " % VERSION
94+ errMsg += "fix it as soon as possible:\n sqlmap version: %s " % VERSION
95+ errMsg += "(SVN revision: %s)\n " % REVISION
9496 errMsg += "Python version: %s\n " % sys .version .split ()[0 ]
9597 errMsg += "Operating system: %s" % sys .platform
9698 return errMsg
Original file line number Diff line number Diff line change 3030
3131
3232# sqlmap version and site
33- VERSION = "0.6.3-rc2"
33+ REVISION = "$Revision$"
34+ VERSION = "0.6.3-rc3"
3435VERSION_STRING = "sqlmap/%s" % VERSION
3536SITE = "http://sqlmap.sourceforge.net"
3637
You can’t perform that action at this time.
0 commit comments