Change file extentions in reports when different filetype is chosen

svn: r1534
This commit is contained in:
Don Allingham
2003-05-16 01:49:50 +00:00
parent 053dc73afe
commit f17265cf9e
25 changed files with 142 additions and 38 deletions

View File

@@ -167,7 +167,8 @@ class DescendantReportDialog(Report.TextReportDialog):
MyReport.report()
MyReport.end()
except Errors.ReportError, msg:
ErrorDialog(str(msg))
(m1,m2) = msg.messages()
ErrorDialog(m1,m2)
except:
import DisplayTrace
DisplayTrace.DisplayTrace()