mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Some more preparing for 2to3 (keys() is iter in 3)
This commit is contained in:
parent
1adc66b763
commit
8f13bda035
14 changed files with 37 additions and 37 deletions
|
|
@ -1640,7 +1640,7 @@ def _cleanupOptions():
|
|||
map(lambda _: conf.__setitem__(_, True), WIZARD.ALL)
|
||||
|
||||
if conf.noCast:
|
||||
for _ in DUMP_REPLACEMENTS.keys():
|
||||
for _ in list(DUMP_REPLACEMENTS.keys()):
|
||||
del DUMP_REPLACEMENTS[_]
|
||||
|
||||
if conf.dumpFormat:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue