mirror of
https://github.com/python/cpython.git
synced 2025-07-23 19:25:40 +00:00
fixed wrong classic MacOS pathname assumption
This commit is contained in:
parent
b2622a452a
commit
979c53757b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue