mirror of https://github.com/python/cpython
fixed wrong classic MacOS pathname assumption
This commit is contained in:
parent
b2622a452a
commit
979c53757b
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue