mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
minor bug fix
This commit is contained in:
@@ -1323,9 +1323,9 @@ def getRange(count, dump=False, plusOne=False):
|
||||
limitStart = conf.limitStart
|
||||
|
||||
if plusOne:
|
||||
indexRange = range(limitStart, limitStop + 1)
|
||||
indexRange = xrange(limitStart, limitStop + 1)
|
||||
else:
|
||||
indexRange = range(limitStart - 1, limitStop)
|
||||
indexRange = xrange(limitStart - 1, limitStop)
|
||||
|
||||
return indexRange
|
||||
|
||||
|
||||
Reference in New Issue
Block a user