X Tutup
Skip to content

Commit dbbfee6

Browse files
committed
Minor style update
1 parent a6d743e commit dbbfee6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlmap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
PYVERSION = sys.version.split()[0]
1111

1212
if PYVERSION >= "3" or PYVERSION < "2.6":
13-
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)
13+
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)
1414
elif __name__ == "__main__":
1515
from _sqlmap import main
1616
from lib.controller.controller import start # needed for proper working of --profile switch

0 commit comments

Comments
 (0)
X Tutup