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

Skip to content

Commit fa48d26

Browse files
committed
Minor cosmetic fix
1 parent 7eef76f commit fa48d26

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/core/option.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1058,16 +1058,16 @@ def __mergeOptions(inputOptions):
10581058

10591059
def __basicOptionValidation():
10601060
if conf.limitStart is not None and not (isinstance(conf.limitStart, int) and conf.limitStart > 0):
1061-
errMsg = "value for LIMITSTART provided with --start option must be an integer value greater than zero (>0)"
1061+
errMsg = "value for --start (limitStart) option must be an integer value greater than zero (>0)"
10621062
raise sqlmapSyntaxException, errMsg
10631063

10641064
if conf.limitStop is not None and not (isinstance(conf.limitStop, int) and conf.limitStop > 0):
1065-
errMsg = "value for LIMITSTOP provided with --stop option must be an integer value greater than zero (>0)"
1065+
errMsg = "value for --stop (limitStop) option must be an integer value greater than zero (>0)"
10661066
raise sqlmapSyntaxException, errMsg
10671067

10681068
if conf.limitStart is not None and isinstance(conf.limitStart, int) and conf.limitStart > 0 and\
10691069
conf.limitStop is not None and isinstance(conf.limitStop, int) and conf.limitStop > 0 and conf.limitStop <= conf.limitStart:
1070-
errMsg = "value for LIMITSTART provided with --start option must be smaller than value for LIMITSTOP provided with --stop option"
1070+
errMsg = "value for --start (limitStart) option must be smaller than value for --stop (limitStop) option"
10711071
raise sqlmapSyntaxException, errMsg
10721072

10731073
def init(inputOptions=advancedDict()):

0 commit comments

Comments
 (0)