small fix to put images on seperate lines
authorBrett Parker <iDunno@sommitrealweird.co.uk>
Sun, 2 Mar 2008 19:17:37 +0000 (19:17 +0000)
committerBrett Parker <iDunno@sommitrealweird.co.uk>
Sun, 2 Mar 2008 19:17:37 +0000 (19:17 +0000)
rss2maildir.py

index 6a24b94edc40a119845ea24caad6859c3f7c4b88..dce6c3c7a6c9afb7578887f8296575a0b32bcb42 100755 (executable)
@@ -550,7 +550,7 @@ class HTML2Text(HTMLParser):
             self.urls = []
         if len(self.images.keys()) > 0:
             self.text = self.text + u'\n.. ' \
-                + u'.. '.join( \
+                + u'\n.. '.join( \
                     ["|%s| image:: %s" %(a, self.images[a]["url"]) \
                 for a in self.images.keys()]) + u'\n'
             self.images = {}