fixed wrong classic MacOS pathname assumption

This commit is contained in:
Just van Rossum 2002-07-12 16:50:32 +00:00
parent b2622a452a
commit 979c53757b
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ def runningOnOSX():
class PythonIDE(Wapplication.Application): class PythonIDE(Wapplication.Application):
def __init__(self): def __init__(self):
self.preffilepath = ":Python:PythonIDE preferences" self.preffilepath = os.path.join("Python", "PythonIDE preferences")
Wapplication.Application.__init__(self, 'Pide') Wapplication.Application.__init__(self, 'Pide')
from Carbon import AE from Carbon import AE
from Carbon import AppleEvents from Carbon import AppleEvents