Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ff160ab

Browse files
committed
minor bug fix
1 parent 45af228 commit ff160ab

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

plugins/generic/search.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,8 @@ def searchTable(self):
267267
continue
268268
else:
269269
for db in conf.db.split(","):
270-
foundTbls[db] = []
270+
if db not in foundTbls:
271+
foundTbls[db] = []
271272
else:
272273
dbName = "SQLite" if Backend.isDbms(DBMS.SQLITE) else "Firebird"
273274
foundTbls["%s%s" % (dbName, METADB_SUFFIX)] = []

0 commit comments

Comments
 (0)