diff options
| author | George Danezis <gdane@microsoft.com> | 2007-07-08 19:11:05 +0000 |
|---|---|---|
| committer | George Danezis <gdane@microsoft.com> | 2007-07-08 19:11:05 +0000 |
| commit | d37e190ed66767db035cf034922fbd9e1fadb3f0 (patch) | |
| tree | 041d71245d0bd309fb5de95bd47b531b6906c46a /BibTeX.py | |
| parent | 8dcc422474a8c1ddb6d3d4746b0c263e7b0fca63 (diff) | |
| download | anonbib-d37e190ed66767db035cf034922fbd9e1fadb3f0.tar.gz | |
Bug fix: paragraph tag was not closed for paper entries.
svn:r231
Diffstat (limited to 'BibTeX.py')
| -rw-r--r-- | BibTeX.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -505,7 +505,7 @@ class BibTeXEntry: elif draft: res = ["<li><div class='draftEntry'><p class='draftEntry'>" ] else: - res = ["<li><p class='entry'"] + res = ["<li><p class='entry'>"] res.append("<span class='title'><a name='%s'>%s</a></span>"%( url_untranslate(self.key),htmlize(self['title']))) |
