* src/GrampsLogger/_ErrorReportAssistant.py (__init__): Properly

call Assistant.
	* src/plugins/GraphViz.py (get_event_string): Stop using cause.


svn: r7273
This commit is contained in:
Alex Roitman 2006-08-27 06:30:56 +00:00
parent bf309faa34
commit 132746bdd2
3 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,7 @@
2006-08-26 Alex Roitman <shura@gramps-project.org>
* src/GrampsLogger/_ErrorReportAssistant.py (__init__): Properly
call Assistant.
* src/plugins/GraphViz.py (get_event_string): Stop using cause.
* src/Filters/Rules/Person/__init__.py (register): Add dictionary
for private rules.
* src/Filters/_FilterParser.py (startElement): Support parsing for

View File

@ -17,7 +17,7 @@ class ErrorReportAssistant:
self._error_details_text_buffer = None
self._final_report_text_buffer = None
self.w = Assistant.Assistant(None,self.complete)
self.w = Assistant.Assistant(None,None,self.complete)
self.w.add_text_page(
_('Report a bug'),

View File

@ -556,7 +556,7 @@ just use iconv:
if place and place.get_title():
return place.get_title()
else:
return event.get_cause()
return '' #event.get_cause()
return ''