From: Sergey M․ Date: Sat, 2 May 2015 17:36:55 +0000 (+0600) Subject: [YoutubeDL] Improve description file naming X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=2699da8041cf10a636e0ac99efb91854b2c3aa58;p=youtube-dl [YoutubeDL] Improve description file naming --- diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 27c1e726f..eb7470f72 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1271,7 +1271,7 @@ class YoutubeDL(object): return if self.params.get('writedescription', False): - descfn = filename + '.description' + descfn = replace_extension(filename, 'description', info_dict.get('ext')) if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(descfn)): self.to_screen('[info] Video description is already present') elif info_dict.get('description') is None: