aboutsummaryrefslogtreecommitdiffstats
path: root/BibTeX.py
diff options
context:
space:
mode:
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