mailr10704 - /1.3/info.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on February 16, 2010 - 14:38:
Author: bugman
Date: Tue Feb 16 14:38:47 2010
New Revision: 10704

URL: http://svn.gna.org/viewcvs/relax?rev=10704&view=rev
Log:
Fix for the cite_html() bibliography method.

The <em> tag was not being closed!


Modified:
    1.3/info.py

Modified: 1.3/info.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/info.py?rev=10704&r1=10703&r2=10704&view=diff
==============================================================================
--- 1.3/info.py (original)
+++ 1.3/info.py Tue Feb 16 14:38:47 2010
@@ -203,7 +203,7 @@
         if title and hasattr(self, 'title'):
             cite = cite + ' ' + self.title
         if journal and hasattr(self, 'journal'):
-            cite = cite + ' <em>' + self.journal + '<em>,'
+            cite = cite + ' <em>' + self.journal + '</em>,'
         if volume and hasattr(self, 'volume'):
             cite = cite + ' <strong>' + self.volume + '</strong>'
         if number and hasattr(self, 'number'):




Related Messages


Powered by MHonArc, Updated Tue Feb 16 14:40:02 2010