mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Fixes #4292
This commit is contained in:
parent
b719b9612f
commit
39c320c29b
2 changed files with 2 additions and 2 deletions
|
|
@ -241,7 +241,7 @@ class Dump(object):
|
|||
lines = "-" * (int(maxlength) + 2)
|
||||
|
||||
for db, tables in dbTables.items():
|
||||
tables.sort()
|
||||
tables = sorted(filter(None, tables))
|
||||
|
||||
self._write("Database: %s" % unsafeSQLIdentificatorNaming(db) if db else "Current database")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue