Kaydet (Commit) 6dc2b57c authored tarafından Just van Rossum's avatar Just van Rossum

skip CVS folders when building the Scripts menu -- jvr

üst 71017e5b
......@@ -261,7 +261,13 @@ class Application(FrameWork.Application):
savedir = os.getcwd()
os.chdir(top)
for name in names:
fss, isdir, isalias = macfs.ResolveAliasFile(name)
if name == "CVS":
continue
try:
fss, isdir, isalias = macfs.ResolveAliasFile(name)
except:
# maybe a broken alias
continue
path = fss.as_pathname()
if done.has_key(path):
continue
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment