mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
Minor refactoring
This commit is contained in:
parent
1363f26367
commit
ec4e49d771
8 changed files with 9 additions and 9 deletions
|
|
@ -275,7 +275,7 @@ class Databases:
|
|||
values = filter(None, arrayizeValue(values))
|
||||
|
||||
if len(values) > 0 and not isListLike(values[0]):
|
||||
values = map(lambda x: (dbs[0], x), values)
|
||||
values = ((dbs[0], _) for _ in values)
|
||||
|
||||
for db, table in filterPairValues(values):
|
||||
db = safeSQLIdentificatorNaming(db)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue