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

Skip to content

Commit c2dce66

Browse files
committed
Fix for an user reported bug (tbl can be None)
1 parent 63d0e9b commit c2dce66

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/generic/search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ def searchColumn(self):
430430

431431
for db, tbl in filterPairValues(values):
432432
db = safeSQLIdentificatorNaming(db)
433-
tbls = tbl.split(",")
433+
tbls = tbl.split(",") if not isNoneValue(tbl) else []
434434

435435
for tbl in tbls:
436436
tbl = safeSQLIdentificatorNaming(tbl, True)

0 commit comments

Comments
 (0)