added some try/excepts so it also works when certain projects/folders are not available -- jvr

This commit is contained in:
Just van Rossum 1999-01-30 18:27:12 +00:00
parent f1ae0eb9fa
commit 2607a44690
1 changed files with 10 additions and 2 deletions

View File

@ -70,9 +70,17 @@ def buildmwproject(top, creator, projects):
else:
target = ''
file = os.path.join(top, file)
fss = macfs.FSSpec(file)
try:
fss = macfs.FSSpec(file)
except ValueError:
print '** file not found:', file
continue
print 'Building', file, target
mgr.open(fss)
try:
mgr.open(fss)
except aetools.Error, detail:
print '**', detail, file
continue
if target:
try:
mgr.Set_Current_Target(target)