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): ...@@ -261,7 +261,13 @@ class Application(FrameWork.Application):
savedir = os.getcwd() savedir = os.getcwd()
os.chdir(top) os.chdir(top)
for name in names: 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() path = fss.as_pathname()
if done.has_key(path): if done.has_key(path):
continue 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