X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=devscripts%2Fgh-pages%2Fupdate-feed.py;h=16571a924c132b8ba7849ea9ad81a4d63c6ed208;hb=c3a3028f9f7fa79ee7357b65252ff2c9a062bdc8;hp=f8b9fb5943ecc0e448a987867a77e6ff142710ca;hpb=6060788083df366dae1cd75d4c1eac8e46918765;p=youtube-dl diff --git a/devscripts/gh-pages/update-feed.py b/devscripts/gh-pages/update-feed.py index f8b9fb594..16571a924 100755 --- a/devscripts/gh-pages/update-feed.py +++ b/devscripts/gh-pages/update-feed.py @@ -8,8 +8,8 @@ import json atom_template=textwrap.dedent("""\ - - Updates feed. + + youtube-dl releases youtube-dl-updates-feed @TIMESTAMP@ @ENTRIES@ @@ -19,10 +19,10 @@ entry_template=textwrap.dedent(""" youtube-dl-@VERSION@ New version @VERSION@ - + @@ -51,7 +51,6 @@ 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) -