From: Just van Rossum Date: Fri, 12 Jul 2002 16:50:32 +0000 (+0000) Subject: fixed wrong classic MacOS pathname assumption X-Git-Tag: v2.3c1~5017 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=979c53757b5a555725bfab5ee65cfb00b763b46b;p=python fixed wrong classic MacOS pathname assumption --- diff --git a/Mac/Tools/IDE/PythonIDEMain.py b/Mac/Tools/IDE/PythonIDEMain.py index 1b2b3b77fa..0a1d90fe65 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