* src/ChooseParents.py: build an exclusion list of those

obviously not the parents
* src/EditPerson.py: allow ID value to be edited
* src/RelLib.py: Add try_to_find_from_gramps_id
* src/ImageSelect.py: catch OSError


svn: r3253
This commit is contained in:
Don Allingham
2004-07-09 04:31:43 +00:00
parent d89e54a693
commit c75caa9b05
5 changed files with 46 additions and 11 deletions

View File

@ -492,7 +492,7 @@ class Gallery(ImageSelect):
u = urllib.URLopener()
try:
tfile,headers = u.retrieve(d)
except IOError, msg:
except (IOError,OSError), msg:
t = _("Could not import %s") % d
ErrorDialog(t,str(msg))
return
@ -1233,3 +1233,4 @@ class DeleteMediaQuery:
self.db.add_transaction(trans,_("Remove Media Object"))
if self.update:
self.update()