1
0
mirror of https://github.com/ciromattia/kcc synced 2026-07-07 13:35:36 +00:00

remove unar

This commit is contained in:
Alex Xu
2024-05-11 19:48:53 -07:00
parent af8c564a50
commit 2c4b239d67
2 changed files with 0 additions and 4 deletions
-3
View File
@@ -70,9 +70,6 @@ class ComicArchive:
, stdout=PIPE, stderr=STDOUT)
if process.returncode != 0:
raise OSError(EXTRACTION_ERROR)
elif process.returncode != 0 and platform.system() == 'Darwin':
process = subprocess_run_silent(['unar', self.filepath, '-f', '-o', targetdir],
stdout=PIPE, stderr=STDOUT)
elif process.returncode != 0:
raise OSError(EXTRACTION_ERROR)
return targetdir