diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-09-14 18:41:52 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-09-14 18:41:52 +0100 |
commit | b2db44be90a67db8005fb73024db59e22060bef6 (patch) | |
tree | e3152806e70cf900b0c92c8ce032b8848123babe /src/frontend/gui | |
parent | 05622c425f532dc3767105ff75c463483a7acf88 (diff) |
replace subprocess.call with subprocess.Popen in sync code, rework the logic a bit to make it more reliablev3.1909.1
Diffstat (limited to 'src/frontend/gui')
-rw-r--r-- | src/frontend/gui/sisyphus-gui.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index cc55567..bc985e1 100644 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -382,6 +382,7 @@ class MainWorker(QtCore.QObject): @QtCore.pyqtSlot() def startUpdate(self): self.started.emit() + checkSync() setJobs.__wrapped__() #undecorate startUpdate.__wrapped__() #undecorate self.finished.emit() |