From 3be22037d6bea8a4cec036839018bb649c436108 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 23 Apr 2018 01:30:29 +0100 Subject: rearrange and comment the functions (what each of it does) --- src/frontend/gui/sisyphus-gui.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/frontend/gui/sisyphus-gui.py') 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() -- cgit v1.2.3