Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e56309f

Browse files
committed
minor makeup update
1 parent 8405ef5 commit e56309f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/parse/cmdline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ def cmdLineParser():
649649
if not any((args.direct, args.url, args.logFile, args.bulkFile, args.googleDork, args.configFile, \
650650
args.requestFile, args.updateAll, args.smokeTest, args.liveTest, args.realTest, args.wizard, args.dependencies)):
651651
errMsg = "missing a mandatory option (-d, -u, -l, -m, -r, -g, -c, --wizard, --update or --dependencies), "
652-
errMsg += "-h for help"
652+
errMsg += "use -h for help"
653653
parser.error(errMsg)
654654

655655
return args

sqlmap.py

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

1414
if PYVERSION >= "3" or PYVERSION < "2.6":
15-
exit("[CRITICAL] incompatible Python version detected ('%s'). For successfully running sqlmap you'll have to use 2.6 <= Python < 3.0" % PYVERSION)
15+
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)
1616
else:
1717
from _sqlmap import main
1818
# import needed for proper working of --profile switch

0 commit comments

Comments
 (0)