]> kaliko git repositories - sid.git/blobdiff - sid/feeds.py
Fixed tell "purge" command
[sid.git] / sid / feeds.py
index a40f7662e8f14383d1d55089dd12f59fa91b82b5..5a33d6d5ccb40dbaa2c1f88d3c5a1795d02e16aa 100644 (file)
@@ -137,13 +137,13 @@ class Feeds(Plugin):
         # 'http://www.debian.org/News/news',
 
         # DPN in french
-       'http://www.debian.org/News/weekly/dwn.fr.rdf',
+        'http://www.debian.org/News/weekly/dwn.fr.rdf',
 
         # Misc
-       'http://rss.gmane.org/topics/excerpts/gmane.linux.debian.devel.announce',
-       'http://rss.gmane.org/gmane.linux.debian.user.security.announce',
-       'http://planet-fr.debian.net/users/rss20.xml',
-       'http://planet.debian.org/atom.xml',
+        'http://rss.gmane.org/topics/excerpts/gmane.linux.debian.devel.announce',
+        'http://rss.gmane.org/gmane.linux.debian.user.security.announce',
+        'http://planet-fr.debian.net/users/rss20.xml',
+        'http://planet.debian.org/atom.xml',
         ]
 
     def __init__(self, bot):
@@ -165,9 +165,7 @@ class Feeds(Plugin):
             return
         html = ['<a href="{0}">{1}</a>'.format(html_escape(u),
                                                html_escape(u[7:])
-                                               ) for u in Feeds.FEEDS]
-        msg = {
-                'mbody': 'Feeds:\n' + '\n'.join(Feeds.FEEDS),
-                'mhtml': 'Feeds:<br />' + '<br />'.join(html),
-                }
+                                              ) for u in Feeds.FEEDS]
+        msg = {'mbody': 'Feeds:\n' + '\n'.join(Feeds.FEEDS),
+               'mhtml': 'Feeds:<br />' + '<br />'.join(html),}
         self.reply(rcv, msg)