From cb8b528c29b09d13f9a2484e34eb8f076c9c9140 Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Tue, 12 Mar 2024 10:08:03 -0700 Subject: [PATCH] add more 7z Windows locations --- kcc.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kcc.py b/kcc.py index 737b4d39..f3bbbd56 100755 --- a/kcc.py +++ b/kcc.py @@ -51,6 +51,8 @@ os.path.expandvars('%LOCALAPPDATA%\\Amazon\\KC2'), os.path.expandvars('%LOCALAPPDATA%\\Amazon\\Kindle Previewer 3\\lib\\fc\\bin\\'), 'C:\\Program Files\\7-Zip', + 'D:\\Program Files\\7-Zip', + 'E:\\Program Files\\7-Zip', ] if getattr(sys, 'frozen', False): os.environ['PATH'] += os.pathsep + os.pathsep.join(win_paths)