src/ReportBase/_ReportDialog.py: don't catch all exceptions - we won't get a traceback.

svn: r8291
This commit is contained in:
Brian Matherly 2007-03-11 22:21:19 +00:00
parent 066c41d25a
commit 7593dbfe69
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,8 @@
2007-03-09 Brian Matherly <brian@gramps-project.org>
2007-03-11 Brian Matherly <brian@gramps-project.org>
* src/ReportBase/_ReportDialog.py: don't catch all exceptions - we won't
get a traceback.
2007-03-11 Brian Matherly <brian@gramps-project.org>
* src/plugins/NarrativeWeb.py: 0000950: include the date in the reference
sections of the narrative web site

View File

@ -671,9 +671,6 @@ def report(dbstate,uistate,person,report_class,options_class,
report_class(dbstate,uistate,person)
except Errors.WindowActiveError:
pass
except Exception, msg:
ErrorDialog(_("Error generating report"),
str(msg))
return
else:
dialog_class = ReportDialog