aboutsummaryrefslogtreecommitdiffstats
path: root/BibTeX.py
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2003-05-23 03:02:39 +0000
committerNick Mathewson <nickm@torproject.org>2003-05-23 03:02:39 +0000
commit64a8146d96ad01422c0aa28ba1cbd99cac43a683 (patch)
treeea5d5dd2629186a842a915d8e30b6c9d7e832dd9 /BibTeX.py
parent5255afb72d1e7105fbb3cce9dbe27f4836aa48b9 (diff)
downloadanonbib-64a8146d96ad01422c0aa28ba1cbd99cac43a683.tar.gz
Correct handling of URLs for authors with umlauts
svn:r34
Diffstat (limited to 'BibTeX.py')
-rw-r--r--BibTeX.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/BibTeX.py b/BibTeX.py
index d181256..60d447b 100644
--- a/BibTeX.py
+++ b/BibTeX.py
@@ -594,8 +594,10 @@ class ParsedAuthor:
def getHomepage(self):
s = htmlize(str(self))
+ if s.startswith("Bodo"):
+ print s
for pat, url in config.AUTHOR_RE_LIST:
- if pat.search(str(self)):
+ if pat.search(s):
return url
return None