diff options
author | Paweł Jastrzębski <pawelj@iosphe.re> | 2019-03-08 09:04:12 +0100 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@iosphe.re> | 2019-03-08 09:04:12 +0100 |
commit | a060498ac7920b82c9c91900cd84d4317193db12 (patch) | |
tree | 473a5d2147d299c6a8a7391a37a1cbe31ac7981e /kindlecomicconverter | |
parent | Merge pull request #308 from ciromattia/dev (diff) | |
download | kcc-a060498ac7920b82c9c91900cd84d4317193db12.tar.gz kcc-a060498ac7920b82c9c91900cd84d4317193db12.tar.bz2 kcc-a060498ac7920b82c9c91900cd84d4317193db12.zip |
Fixed Windows autoupdater
Diffstat (limited to 'kindlecomicconverter')
-rw-r--r-- | kindlecomicconverter/KCC_gui.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py index 283c41c..7690d80 100644 --- a/kindlecomicconverter/KCC_gui.py +++ b/kindlecomicconverter/KCC_gui.py @@ -175,8 +175,7 @@ class VersionThread(QtCore.QThread): move(path[0], path[0] + '.exe') MW.hideProgressBar.emit() MW.modeConvert.emit(1) - Popen(path[0] + '.exe /SP- /silent /noicons', stdout=PIPE, stderr=STDOUT, stdin=PIPE, close_fds=True, - shell=True) + Popen(path[0] + '.exe /SP- /silent /noicons', stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True) MW.forceShutdown.emit() except Exception: MW.addMessage.emit('Failed to download the update!', 'warning', False) |