1
0
mirror of https://github.com/ciromattia/kcc synced 2026-05-11 10:12:30 +00:00

Implemented OSX PATH change to Windows code too + minor tweaks

This commit is contained in:
Paweł Jastrzębski
2013-11-09 20:09:34 +01:00
parent 8687604d26
commit 0a30f1ffb9
4 changed files with 10 additions and 9 deletions

1
kcc.py
View File

@@ -52,6 +52,7 @@ else:
if getattr(sys, 'frozen', False):
os.chdir(os.path.dirname(os.path.abspath(sys.executable)))
else:
os.environ['PATH'] = os.path.dirname(os.path.abspath(__file__)) + '/other/;' + os.environ['PATH']
os.chdir(os.path.dirname(os.path.abspath(__file__)))
from kcc import KCC_ui