* src/_ErrorReportAssistant.py: Fix email client launch (#455)

svn: r7329
This commit is contained in:
Brian Matherly 2006-09-25 03:29:38 +00:00
parent c07efc751a
commit 64b29cee3a
2 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,7 @@
2006-09-24 Brian Matherly <brian@gramps-project.org>
* src/plugins/AncestorReport.py: Fix generation numbers.
* src/_ErrorReportAssistant.py: Fix email client launch (#455)
2006-09-23 Don Allingham <don@gramps-project.org>
* src/images/sources.svg: new icon

View File

@ -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()))