mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Minor refactoring related to last couple of commits
This commit is contained in:
parent
8f13bda035
commit
a31ac0376d
10 changed files with 25 additions and 25 deletions
|
|
@ -67,7 +67,7 @@ class Enumeration(GenericEnumeration):
|
|||
else:
|
||||
dbs = self.getDbs()
|
||||
|
||||
for db in filter(None, dbs):
|
||||
for db in (_ for _ in dbs if _):
|
||||
dbs[dbs.index(db)] = safeSQLIdentificatorNaming(db)
|
||||
|
||||
infoMsg = "fetching tables for database"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue