From 4aede124fa59959b7a75d6252ecf3d999b8f38bc Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Sat, 17 May 2014 17:34:48 +0100 Subject: [PATCH] 7708: Fix LaTeX output format for reports --- gramps/plugins/docgen/latexdoc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gramps/plugins/docgen/latexdoc.py b/gramps/plugins/docgen/latexdoc.py index bed059af7..0703c5f75 100644 --- a/gramps/plugins/docgen/latexdoc.py +++ b/gramps/plugins/docgen/latexdoc.py @@ -35,6 +35,7 @@ # python modules # #------------------------------------------------------------------------ +from __future__ import unicode_literals from gramps.gen.const import GRAMPS_LOCALE as glocale _ = glocale.translation.gettext from bisect import bisect @@ -59,7 +60,7 @@ except: "in LaTex documents will not be available. " "Use your package manager to install python-imaging")) -_CLICKABLE = r'''\url{\1}''' +_CLICKABLE = '\\url{\\1}' #------------------------------------------------------------------------ #