From 4969e8c55350771d5a9c73a64f4cee7e512d924c Mon Sep 17 00:00:00 2001 From: Frederic Bron Date: Sun, 4 Jul 2010 22:17:09 +0200 Subject: [PATCH] in html->texi conversion, an unexpected ";" was left --- scripts/build/html-to-texi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/html-to-texi.py b/scripts/build/html-to-texi.py index 520c3ecce8..a7005ec150 100644 --- a/scripts/build/html-to-texi.py +++ b/scripts/build/html-to-texi.py @@ -53,7 +53,7 @@ body = re.sub ('(?ms)
(.*?)(
)', r'\1', body) body = re.sub ('(?ms)(.*?)()', r'@strong{\1}', body) body = re.sub ('(?ms)(.*?)()', r'@emph{\1}', body) -body = re.sub ('(?ms) ', r'@tie{}', body) +body = re.sub ('(?ms) ', r'@tie{}', body) body = re.sub ('(?ms)\cite{(.*?)}', r'[\1]', body) body = re.sub ('(?ms)\cite{(.*?)}', r'[\1]', body) -- 2.39.2