about summary refs log tree commit diff
path: root/kcc.py
diff options
context:
space:
mode:
authorPaweł Jastrzębski <pawelj@iosphe.re>2015-09-30 17:04:12 +0200
committerPaweł Jastrzębski <pawelj@iosphe.re>2015-09-30 17:04:12 +0200
commit8a0ba682c337370d4871c8e693147a9e5e042822 (patch)
tree0cf0ab6df627c41cab5378a6d270215f36d5ddb8 /kcc.py
parentWindows: Miscellenaus tweaks (diff)
downloadkcc-8a0ba682c337370d4871c8e693147a9e5e042822.tar.gz
kcc-8a0ba682c337370d4871c8e693147a9e5e042822.tar.bz2
kcc-8a0ba682c337370d4871c8e693147a9e5e042822.zip
Binary blob cleanup
Diffstat (limited to 'kcc.py')
-rwxr-xr-xkcc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kcc.py b/kcc.py
index dd245cb..d5238b0 100755
--- a/kcc.py
+++ b/kcc.py
@@ -27,7 +27,7 @@ if sys.version_info[0] != 3:
 import os
 if sys.platform.startswith('darwin'):
     if 'RESOURCEPATH' not in os.environ:
-        os.environ['PATH'] = os.path.dirname(os.path.abspath(__file__)) + '/other/:' + os.environ['PATH']
+        os.environ['PATH'] = os.path.dirname(os.path.abspath(__file__)) + '/other/osx/:' + os.environ['PATH']
     else:
         os.environ['PATH'] = './../Resources:/usr/local/bin:/usr/bin:/bin'
         os.system('defaults write com.kindlecomicconverter.KindleComicConverter ApplePersistenceIgnoreState YES')
@@ -45,7 +45,7 @@ elif sys.platform.startswith('win'):
         sys.stdout = FakeSTD()
         sys.stderr = FakeSTD()
     else:
-        os.environ['PATH'] = os.path.dirname(os.path.abspath(__file__)) + '/other/;' + os.environ['PATH']
+        os.environ['PATH'] = os.path.dirname(os.path.abspath(__file__)) + '/other/windows/;' + os.environ['PATH']
         os.chdir(os.path.dirname(os.path.abspath(__file__)))
 
 from kcc.shared import dependencyCheck