diff --git a/ChangeLog b/ChangeLog index d380ee54d..5703f4875 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ 2006-09-24 Brian Matherly * src/plugins/AncestorReport.py: Fix generation numbers. + * src/_ErrorReportAssistant.py: Fix email client launch (#455) 2006-09-23 Don Allingham * src/images/sources.svg: new icon diff --git a/src/GrampsLogger/_ErrorReportAssistant.py b/src/GrampsLogger/_ErrorReportAssistant.py index 6b4c22326..a4d4fc574 100644 --- a/src/GrampsLogger/_ErrorReportAssistant.py +++ b/src/GrampsLogger/_ErrorReportAssistant.py @@ -75,7 +75,8 @@ class ErrorReportAssistant: def _start_email_client(self,obj=None): import GrampsDisplay - GrampsDisplay.url('mailto:gramps-bugs@lists.sourceforge.net&subject="bug report"&body="%s"' \ + print self._final_report_text_buffer.get_text( + GrampsDisplay.url('mailto:gramps-bugs@lists.sourceforge.net?subject="bug report"&body="%s"' \ % self._final_report_text_buffer.get_text( self._final_report_text_buffer.get_start_iter(), self._final_report_text_buffer.get_end_iter()))