src/ReportBase/_ReportDialog.py: Fix attribute error exceptions.

svn: r8635
This commit is contained in:
Brian Matherly 2007-06-23 14:07:00 +00:00
parent e98d2e54e5
commit fc3405615e
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
2007-06-23 Brian Matherly <brian@gramps-project.org>
* src/ReportBase/_ReportDialog.py: Fix attribute error exceptions.
2007-06-23 Brian Matherly <brian@gramps-project.org>
* src/plugins/NarrativeWeb.py: 0001016: [narrative website] Why is the mime
type shown on each image page

View File

@ -697,8 +697,8 @@ def report(dbstate,uistate,person,report_class,options_class,
except Errors.DatabaseError,msg:
ErrorDialog(_("Report could not be created"),str(msg))
except AttributeError,msg:
if str(msg).startswith("None"):
# "None object type has no attribute . . . " usually means
if str(msg).startswith("'NoneType' object has no attribute"):
# "'NoneType' object has no attribute ..." usually means
# database corruption
RunDatabaseRepair(str(msg))
else: