Fixed add spouse/family view update problem

svn: r570
This commit is contained in:
Don Allingham
2001-11-18 16:06:36 +00:00
parent 44aa464fe0
commit e1185f5142
4 changed files with 34 additions and 25 deletions

View File

@@ -567,12 +567,12 @@ def exportData(database, filename, progress, pbar, fbar, sbar):
try:
g = open(filename,"w")
except IOError,msg:
msg = "%s\n%s" % (_("Could not open %s") % filename,str(msg))
msg = "%s\n%s" % (_("%s could not be opened\n") % filename,str(msg))
GnomeErrorDialog(msg)
progress.destroy()
return
except:
GnomeErrorDialog(_("Could not open %s") % filename)
GnomeErrorDialog(_("%s could not be opened\n") % filename)
progress.destroy()
return