2007-06-24 Alex Roitman <shura@gramps-project.org>

* src/GrampsDb/_GrampsBSDDB.py (load): Typo.
	* src/DbLoader.py (read_file): Fix error reporting.



svn: r8649
This commit is contained in:
Alex Roitman
2007-06-24 20:01:50 +00:00
parent 678e032007
commit da7d2b7986
3 changed files with 8 additions and 3 deletions

View File

@ -461,8 +461,8 @@ class DbLoader:
_("Could not open file: %s") % filename,
str(msg[1]))
except Exception, msg:
QuestionDialog.ErrorDialog(
_("Could not open file: %s") % filename, msg[0] )
QuestionDialog.ErrorDialog(
_("Could not open file: %s") % filename,str(msg) )
return True
def open_saved_as(self, filename, filetype):