diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-06-08 16:10:24 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-06-08 16:10:24 +0100 |
commit | f587c2de87665b10e70b4143989572b19e43c08c (patch) | |
tree | 9d68aec0a5fa92d4f7a3a377b205a89610221a73 /src/frontend/gui/sisyphus-gui.py | |
parent | 1d30457b03e7906770ee40a774320121e80a4bfd (diff) |
rename some constants to something more pretty
Diffstat (limited to 'src/frontend/gui/sisyphus-gui.py')
-rw-r--r-- | src/frontend/gui/sisyphus-gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index 15ef316..a3f1375 100644 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -204,7 +204,7 @@ class Sisyphus(QtWidgets.QMainWindow): AND iv <> av ''' % (Sisyphus.applicationView, Sisyphus.searchTerm, noVirtual)), ]) - with sqlite3.connect(sisyphus.filesystem.sisyphusDB) as db: + with sqlite3.connect(sisyphus.filesystem.localDatabase) as db: cursor = db.cursor() cursor.execute('%s' % (self.SELECTS[Sisyphus.databaseView])) rows = cursor.fetchall() |