1
0
mirror of https://github.com/ciromattia/kcc synced 2026-01-03 20:09:31 +00:00

Added MANIFEST.in, ugly fix for OSX not evaluating user local $PATH on app launched from Finder.

This commit is contained in:
Ciro Mattia Gonano
2013-01-28 11:59:43 +01:00
parent a546d0bea6
commit 74a93f1e50
5 changed files with 53 additions and 34 deletions

4
kcc.py
View File

@@ -38,7 +38,11 @@ __docformat__ = 'restructuredtext en'
from Tkinter import *
from kcc import gui
from sys import platform
import os
if platform == 'darwin':
os.environ['PATH'] = '/usr/local/bin:' + os.environ['PATH']
root = Tk()
app = gui.MainWindow(master=root,title="Kindle Comic Converter v" + __version__)
root.tkraise()