fix for 5851

svn: r19893
This commit is contained in:
Craig J. Anderson 2012-06-21 20:39:55 +00:00
parent ec5e8ae6ca
commit 9500e4489c

View File

@ -1439,7 +1439,8 @@ class CairoDoc(BaseDoc, TextDoc, DrawDoc):
# calls. This way we save the markup created by the report # calls. This way we save the markup created by the report
# The markup in the note editor is not in the text so is not # The markup in the note editor is not in the text so is not
# considered. It must be added by pango too # considered. It must be added by pango too
return self._backend.ESCAPE_FUNC()(text) text = self._backend.ESCAPE_FUNC()(text)
return text
def __write_text(self, text, mark=None, markup=False, links=False): def __write_text(self, text, mark=None, markup=False, links=False):
""" """