diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-04-23 01:30:29 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-04-23 01:30:29 +0100 |
commit | 3be22037d6bea8a4cec036839018bb649c436108 (patch) | |
tree | e9203319ddc6f91ff846776d7692f9346d46e0cc /src/frontend/gui/sisyphus-gui.py | |
parent | ba2c7c5798300703d50d56e6cab3052fa3b4bd91 (diff) |
rearrange and comment the functions (what each of it does)
Diffstat (limited to 'src/frontend/gui/sisyphus-gui.py')
-rwxr-xr-x | src/frontend/gui/sisyphus-gui.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index 238e291..406ea7a 100755 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -377,7 +377,7 @@ class MainWorker(QtCore.QObject): atexit.register(portageKill, portageExec) for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"): self.strReady.emit(portageOutput.rstrip()) - syncLocalDatabaseTable() + syncLocalDatabase() self.finished.emit() @QtCore.pyqtSlot() @@ -389,7 +389,7 @@ class MainWorker(QtCore.QObject): atexit.register(portageKill, portageExec) for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"): self.strReady.emit(portageOutput.rstrip()) - syncLocalDatabaseTable() + syncLocalDatabase() self.finished.emit() @QtCore.pyqtSlot() @@ -400,7 +400,7 @@ class MainWorker(QtCore.QObject): atexit.register(portageKill, portageExec) for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"): self.strReady.emit(portageOutput.rstrip()) - syncLocalDatabaseTable() + syncLocalDatabase() self.finished.emit() @QtCore.pyqtSlot() @@ -411,7 +411,7 @@ class MainWorker(QtCore.QObject): atexit.register(portageKill, portageExec) for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"): self.strReady.emit(portageOutput.rstrip()) - syncLocalDatabaseTable() + syncLocalDatabase() self.finished.emit() |