diff options
| author | Nick Mathewson <nickm@torproject.org> | 2003-05-21 18:43:36 +0000 |
|---|---|---|
| committer | Nick Mathewson <nickm@torproject.org> | 2003-05-21 18:43:36 +0000 |
| commit | beb61b16d4947fca7801c2e0077b3a2e944c2023 (patch) | |
| tree | 4e1fe5c04b77469cc9359a4b3a8feb58e3842cbf /BibTeX.py | |
| parent | cf63ed4edebe9803a982255d4b440d18d4ee3f54 (diff) | |
| download | anonbib-beb61b16d4947fca7801c2e0077b3a2e944c2023.tar.gz | |
Fix a couple of bugs
svn:r24
Diffstat (limited to 'BibTeX.py')
| -rw-r--r-- | BibTeX.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -106,6 +106,7 @@ def splitEntriesByAuthor(entries): for ent in entries: for a in ent.parsedAuthor: sortkey = txtize(" ".join(a.von+a.last+a.first+a.jr)) + url = author_url(" ".join(a.first+a.von+a.last+a.jr)) secname = " ".join(a.last) more = a.first+a.von if more: @@ -113,7 +114,6 @@ def splitEntriesByAuthor(entries): if a.jr: secname += ", "+" ".join(a.jr) secname = htmlize(secname) - url = author_url(secname) if url: url_map[secname] = url |
