aboutsummaryrefslogtreecommitdiffstats
path: root/BibTeX.py
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-10-03 22:12:01 +0000
committerRoger Dingledine <arma@torproject.org>2004-10-03 22:12:01 +0000
commit42d4c6daa211f0801c77cf6321f5bcc2200d8ab4 (patch)
tree7e9c66160619b2589c692c2401a07f8c34852e9b /BibTeX.py
parent6897e306c97bb4917f61cdd8e2490094618dc906 (diff)
downloadanonbib-42d4c6daa211f0801c77cf6321f5bcc2200d8ab4.tar.gz
fix a traceback bug
svn:r111
Diffstat (limited to 'BibTeX.py')
-rw-r--r--BibTeX.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BibTeX.py b/BibTeX.py
index 7ec4792..5978ccd 100644
--- a/BibTeX.py
+++ b/BibTeX.py
@@ -611,7 +611,7 @@ def htmlize(s):
s = RE_LONE_I.sub(lambda m: "i%s" % m.group(1), s)
s = RE_ACCENT.sub(_unaccent, s)
s = RE_LIGATURE.sub(_unlig_html, s);
- s = unTeXEscapeURL(s)
+ s = unTeXescapeURL(s)
s = RE_TEX_CMD.sub("", s)
s = s.translate(ALLCHARS, "{}")
s = RE_PAGE_SPAN.sub(lambda m: "%s-%s"%(m.groups()), s)