GNOME Bugzilla – Bug 587986
html2xml.py does not close <sub>
Last modified: 2009-08-27 09:31:58 UTC
[ Forwarded from http://bugs.debian.org/256848 ] Hi, The html2xml.py leaves <sub> tags opened: for chap in dict['order']: print ' <sub name="%s" link="%s">' % (chap, dict[chap]['link']) if not dict[chap].has_key ('order'): continue ... print ' </sub>' If the continue is reached, the tag won't be closed. This patch from Richard Cohen fixes it.
Created attachment 137975 [details] [review] close <sub> tags
Patch commited. commit 2bf98557060a7956c28437a37cf63f5cd591f760 Author: Richard Cohen <richard@daijobu.co.uk> Date: Thu Aug 27 11:29:52 2009 +0200 Make html2xml.py close <sub> (GNOME bug 587986)