diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-03-11 05:32:19 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-03-11 05:32:19 +0000 |
commit | a9d87ee5bd0c98b6daae9ddf307c634da9c35551 (patch) | |
tree | 3ae25a65b1511d7a9368fa21b4779a6880a132b7 /src/frontend/gui | |
parent | 4edf9a7f554f183ccc34b0e57e734a2cbd6f5b9d (diff) |
run autopep8 on the code
Diffstat (limited to 'src/frontend/gui')
-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 9cad251..a2fa3cd 100644 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -212,7 +212,7 @@ class Sisyphus(QtWidgets.QMainWindow): AND iv <> av ''' % (Sisyphus.applicationView, Sisyphus.searchTerm, noVirtual)), ]) - with sqlite3.connect(sisyphus.getfs.localDatabase) as db: + with sqlite3.connect(sisyphus.getfs.lcl_db) as db: cursor = db.cursor() cursor.execute('%s' % (self.SELECTS[Sisyphus.databaseView])) rows = cursor.fetchall() |