From 6806cbd6e9212c9d66c6bcd3be12923a6b374b10 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 28 Nov 2011 16:01:01 +0000 Subject: [PATCH] minor language update --- sqlmap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlmap.py b/sqlmap.py index 98e5e5757..92e8feede 100755 --- a/sqlmap.py +++ b/sqlmap.py @@ -12,7 +12,7 @@ import sys PYVERSION = sys.version.split()[0] if PYVERSION >= "3" or PYVERSION < "2.6": - exit("[CRITICAL] wrong Python version detected ('%s'). For successfully running sqlmap you have to use 2.6 <= Python < 3.0" % PYVERSION) + exit("[CRITICAL] incompatible Python version detected ('%s'). For successfully running sqlmap you'll have to use 2.6 <= Python < 3.0" % PYVERSION) else: from _sqlmap import main # import needed for proper working of --profile switch