mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
some minor range to xrange conversion (where safe to do)
This commit is contained in:
@@ -414,7 +414,7 @@ class Dump:
|
||||
warnMsg += "due to the large table size"
|
||||
logger.warning(warnMsg)
|
||||
|
||||
for i in range(count):
|
||||
for i in xrange(count):
|
||||
console = (i >= count - TRIM_STDOUT_DUMP_SIZE)
|
||||
field = 1
|
||||
values = []
|
||||
|
||||
Reference in New Issue
Block a user