X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=devscripts%2Fgh-pages%2Fupdate-feed.py;h=16571a924c132b8ba7849ea9ad81a4d63c6ed208;hb=a5caba1eb02665cdc982d6be4a933aafd79243de;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..16571a924 100755 --- a/devscripts/gh-pages/update-feed.py +++ b/devscripts/gh-pages/update-feed.py @@ -19,10 +19,10 @@ entry_template=textwrap.dedent(""" youtube-dl-@VERSION@ New version @VERSION@ - +
- Downloads available at http://youtube-dl.org/downloads/@VERSION@/ + Downloads available at https://yt-dl.org/downloads/@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) -