Browse Source

[YoutubeDL] Improve description file naming

Sergey M․ 10 years ago
parent
commit
2699da8041
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/YoutubeDL.py

+ 1 - 1
youtube_dl/YoutubeDL.py

@@ -1271,7 +1271,7 @@ class YoutubeDL(object):
             return
             return
 
 
         if self.params.get('writedescription', False):
         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)):
             if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(descfn)):
                 self.to_screen('[info] Video description is already present')
                 self.to_screen('[info] Video description is already present')
             elif info_dict.get('description') is None:
             elif info_dict.get('description') is None: