From 979c53757b5a555725bfab5ee65cfb00b763b46b Mon Sep 17 00:00:00 2001 From: Just van Rossum Date: Fri, 12 Jul 2002 16:50:32 +0000 Subject: fixed wrong classic MacOS pathname assumption --- Mac/Tools/IDE/PythonIDEMain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/Tools/IDE/PythonIDEMain.py b/Mac/Tools/IDE/PythonIDEMain.py index 1b2b3b7..0a1d90f 100644 --- a/Mac/Tools/IDE/PythonIDEMain.py +++ b/Mac/Tools/IDE/PythonIDEMain.py @@ -26,7 +26,7 @@ def runningOnOSX(): class PythonIDE(Wapplication.Application): def __init__(self): - self.preffilepath = ":Python:PythonIDE preferences" + self.preffilepath = os.path.join("Python", "PythonIDE preferences") Wapplication.Application.__init__(self, 'Pide') from Carbon import AE from Carbon import AppleEvents -- cgit v0.12