1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 01:36:27 +00:00

only use 7zz on macos (#1012)

This commit is contained in:
Alex Xu
2025-07-03 12:36:12 -07:00
committed by GitHub
parent 0abf620698
commit 68186285bd
4 changed files with 7 additions and 7 deletions

View File

@@ -28,7 +28,7 @@ from xml.parsers.expat import ExpatError
from .shared import subprocess_run
EXTRACTION_ERROR = 'Failed to extract archive. Try extracting file outside of KCC.'
SEVENZIP = '7z' if os.name == 'nt' else '7zz'
SEVENZIP = '7zz' if platform.system() == 'Darwin' else '7z'
class ComicArchive: