diff options
Diffstat (limited to 'kindlecomicconverter/KCC_gui.py')
-rw-r--r-- | kindlecomicconverter/KCC_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py index 71e06de..7959b40 100644 --- a/kindlecomicconverter/KCC_gui.py +++ b/kindlecomicconverter/KCC_gui.py @@ -1009,7 +1009,7 @@ class KCCGUI(KCC_ui.Ui_mainWindow): 'info') rarExitCode = Popen('unrar', stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True) rarExitCode = rarExitCode.wait() - if rarExitCode == 0 or rarExitCode == 7: + if rarExitCode == 0 or rarExitCode == 1 or rarExitCode == 7: self.UnRAR = True else: self.UnRAR = False |