From dbbfee6c93550a9e2e5facfb74227e080f00e04f Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 22 Aug 2012 15:05:17 +0200 Subject: [PATCH] Minor style update --- sqlmap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlmap.py b/sqlmap.py index bf2aa9e73..a0db55df5 100755 --- a/sqlmap.py +++ b/sqlmap.py @@ -10,7 +10,7 @@ import sys PYVERSION = sys.version.split()[0] if PYVERSION >= "3" or PYVERSION < "2.6": - exit("[CRITICAL] incompatible Python version detected ('%s'). For successfully running sqlmap you'll have to use version 2.6 or 2.7 (visit \"http://www.python.org/download/\")" % PYVERSION) + exit("[CRITICAL] incompatible Python version detected ('%s'). For successfully running sqlmap you'll have to use version 2.6 or 2.7 (visit 'http://www.python.org/download/')" % PYVERSION) elif __name__ == "__main__": from _sqlmap import main from lib.controller.controller import start # needed for proper working of --profile switch