7708: Fix LaTeX output format for reports

This commit is contained in:
Nick Hall 2014-05-17 17:34:48 +01:00
parent d1edfc478b
commit 4aede124fa

View File

@ -35,6 +35,7 @@
# python modules # python modules
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
from __future__ import unicode_literals
from gramps.gen.const import GRAMPS_LOCALE as glocale from gramps.gen.const import GRAMPS_LOCALE as glocale
_ = glocale.translation.gettext _ = glocale.translation.gettext
from bisect import bisect from bisect import bisect
@ -59,7 +60,7 @@ except:
"in LaTex documents will not be available. " "in LaTex documents will not be available. "
"Use your package manager to install python-imaging")) "Use your package manager to install python-imaging"))
_CLICKABLE = r'''\url{\1}''' _CLICKABLE = '\\url{\\1}'
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #