mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Reverted dumb "fix"
This commit is contained in:
parent
6bbb8139a0
commit
e71f96afe7
|
@ -1323,10 +1323,8 @@ def getRange(count, dump=False, plusOne=False):
|
||||||
|
|
||||||
if plusOne:
|
if plusOne:
|
||||||
indexRange = range(limitStart, limitStop + 1)
|
indexRange = range(limitStart, limitStop + 1)
|
||||||
elif not dump:
|
|
||||||
indexRange = range(limitStart - 1, limitStop)
|
|
||||||
else:
|
else:
|
||||||
indexRange = range(limitStart, limitStop)
|
indexRange = range(limitStart - 1, limitStop)
|
||||||
|
|
||||||
return indexRange
|
return indexRange
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user