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

Skip to content

Commit 6f61fc0

Browse files
committed
minor bug fix
1 parent d46234e commit 6f61fc0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

plugins/generic/search.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def searchTable(self):
200200
if isinstance(values, basestring):
201201
values = [values]
202202
for value in values:
203-
newValues.append(["SQLite_%s" % METADB_SUFFIX, value])
203+
newValues.append(["SQLite%s" % METADB_SUFFIX, value])
204204

205205
values = newValues
206206

@@ -259,7 +259,7 @@ def searchTable(self):
259259
if tblConsider == "2":
260260
continue
261261
else:
262-
foundTbls["SQLite_%s" % METADB_SUFFIX] = []
262+
foundTbls["SQLite%s" % METADB_SUFFIX] = []
263263

264264
for db in foundTbls.keys():
265265
db = safeSQLIdentificatorNaming(db)

0 commit comments

Comments
 (0)