From: Sergey M․ Date: Sat, 2 May 2015 17:35:18 +0000 (+0600) Subject: [YoutubeDL] Improve annotations file naming X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=98727e123f6d4881920bcb9fa57ea7956afb9a5a;p=youtube-dl [YoutubeDL] Improve annotations file naming --- diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 0330b0b34..27c1e726f 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1286,7 +1286,7 @@ class YoutubeDL(object): return if self.params.get('writeannotations', False): - annofn = filename + '.annotations.xml' + annofn = replace_extension(filename, 'annotations.xml', info_dict.get('ext')) if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(annofn)): self.to_screen('[info] Video annotations are already present') else: