-atom_template=textwrap.dedent("""\
-                                                               <?xml version='1.0' encoding='utf-8'?>
-                                                               <atom:feed xmlns:atom="http://www.w3.org/2005/Atom">
-                                                                       <atom:title>youtube-dl releases</atom:title>
-                                                                       <atom:id>youtube-dl-updates-feed</atom:id>
-                                                                       <atom:updated>@TIMESTAMP@</atom:updated>
-                                                                       @ENTRIES@
-                                                               </atom:feed>""")
-
-entry_template=textwrap.dedent("""
-                                                               <atom:entry>
-                                                                       <atom:id>youtube-dl-@VERSION@</atom:id>
-                                                                       <atom:title>New version @VERSION@</atom:title>
-                                                                       <atom:link href="http://rg3.github.io/youtube-dl" />
-                                                                       <atom:content type="xhtml">
-                                                                               <div xmlns="http://www.w3.org/1999/xhtml">
-                                                                                       Downloads available at <a href="http://youtube-dl.org/downloads/@VERSION@/">http://youtube-dl.org/downloads/@VERSION@/</a>
-                                                                               </div>
-                                                                       </atom:content>
-                                                                       <atom:author>
-                                                                               <atom:name>The youtube-dl maintainers</atom:name>
-                                                                       </atom:author>
-                                                                       <atom:updated>@TIMESTAMP@</atom:updated>
-                                                               </atom:entry>
-                                                               """)
+atom_template = textwrap.dedent("""\
+    <?xml version="1.0" encoding="utf-8"?>
+    <feed xmlns="http://www.w3.org/2005/Atom">
+        <link rel="self" href="http://rg3.github.io/youtube-dl/update/releases.atom" />
+        <title>youtube-dl releases</title>
+        <id>https://yt-dl.org/feed/youtube-dl-updates-feed</id>
+        <updated>@TIMESTAMP@</updated>
+        @ENTRIES@
+    </feed>""")