mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Minor refactoring related to last couple of commits
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user