X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=devscripts%2Fgh-pages%2Fupdate-feed.py;h=cfff05fc8f017cac11bc0293ca60734040127c39;hb=df50a41289c4c36ca4ffcca85c97fae6244a0322;hp=79e94a09892f657314fddb75165d25f161319e85;hpb=c238be3e3a5f9511f7ec43f6244e109113490a0a;p=youtube-dl diff --git a/devscripts/gh-pages/update-feed.py b/devscripts/gh-pages/update-feed.py index 79e94a098..cfff05fc8 100755 --- a/devscripts/gh-pages/update-feed.py +++ b/devscripts/gh-pages/update-feed.py @@ -19,7 +19,7 @@ entry_template=textwrap.dedent(""" youtube-dl-@VERSION@ New version @VERSION@ - +
Downloads available at http://youtube-dl.org/downloads/@VERSION@/ @@ -51,7 +51,7 @@ for v in versions: entries_str = textwrap.indent(''.join(entries), '\t') atom_template = atom_template.replace('@ENTRIES@', entries_str) -with open('update/atom.atom','w',encoding='utf-8') as atom_file: +with open('update/releases.atom','w',encoding='utf-8') as atom_file: atom_file.write(atom_template)