Skip to content

Commit 24e6728

Browse files
committed
Bug fix
1 parent cda27ec commit 24e6728

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/dbms/mssqlserver/enumeration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ def searchColumn(self):
311311
colQuery = "%s%s" % (colCond, colCondParam)
312312
colQuery = colQuery % unsafeSQLIdentificatorNaming(column)
313313

314-
for db in dbs.keys():
314+
for db in filter(None, dbs.keys()):
315315
db = safeSQLIdentificatorNaming(db)
316316

317317
if conf.excludeSysDbs and db in self.excludeDbsList:

0 commit comments

Comments
 (0)