Fix exception message in DbLoader.py.

svn: r8426
This commit is contained in:
Brian Matherly
2007-04-28 03:10:16 +00:00
parent 6b16e40db3
commit a80294ab94
2 changed files with 5 additions and 3 deletions

View File

@ -462,10 +462,9 @@ class DbLoader:
"problem persists, create a new database, import "
"from a backup database, and report the problem to "
"gramps-bugs@lists.sourceforge.net."))
except:
except Exception, msg:
QuestionDialog.ErrorDialog(
_("Could not open file: %s") % filename,
str(msg[1]))
_("Could not open file: %s") % filename, msg )
return True
def open_saved_as(self, filename, filetype):