From 64b29cee3a2bfcb62ce2951153a5b05ef6b80fbf Mon Sep 17 00:00:00 2001 From: Brian Matherly Date: Mon, 25 Sep 2006 03:29:38 +0000 Subject: [PATCH] * src/_ErrorReportAssistant.py: Fix email client launch (#455) svn: r7329 --- gramps2/ChangeLog | 1 + gramps2/src/GrampsLogger/_ErrorReportAssistant.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index d380ee54d..5703f4875 100644 --- a/gramps2/ChangeLog +++ b/gramps2/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/gramps2/src/GrampsLogger/_ErrorReportAssistant.py b/gramps2/src/GrampsLogger/_ErrorReportAssistant.py index 6b4c22326..a4d4fc574 100644 --- a/gramps2/src/GrampsLogger/_ErrorReportAssistant.py +++ b/gramps2/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()))