Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
68922f06
Commit
68922f06
authored
Feb 25, 1999
by
Just van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed "crashing" bug when scripts folder as stored in prefs file does not exist.
parent
cf2efc67
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Mac/Tools/IDE/PythonIDEMain.py
Mac/Tools/IDE/PythonIDEMain.py
+1
-1
No files found.
Mac/Tools/IDE/PythonIDEMain.py
View file @
68922f06
...
...
@@ -90,6 +90,7 @@ class PythonIDE(Wapplication.Application):
prefs
=
self
.
getprefs
()
try
:
fss
,
fss_changed
=
macfs
.
RawAlias
(
prefs
.
scriptsfolder
).
Resolve
()
self
.
scriptsfolder
=
fss
.
NewAlias
()
except
:
path
=
os
.
path
.
join
(
os
.
getcwd
(),
'Scripts'
)
if
not
os
.
path
.
exists
(
path
):
...
...
@@ -98,7 +99,6 @@ class PythonIDE(Wapplication.Application):
self
.
scriptsfolder
=
fss
.
NewAlias
()
self
.
scriptsfoldermodtime
=
fss
.
GetDates
()[
1
]
else
:
self
.
scriptsfolder
=
fss
.
NewAlias
()
self
.
scriptsfoldermodtime
=
fss
.
GetDates
()[
1
]
prefs
.
scriptsfolder
=
self
.
scriptsfolder
.
data
self
.
_scripts
=
{}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment