diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2013-12-16 09:04:36 -0800 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2013-12-16 09:04:36 -0800 | 
| commit | e9c424c144c5d82e95a3b9a33048126a3c61043a (patch) | |
| tree | 0110ba48032e47b8738dd3e48c83ab3b1940214a | |
| parent | 4b2da48ea794178236975eaeef1be120b8a95f2a (diff) | |
| parent | 0a9ce268bad2d2bfaba1498e3843784a2f14e856 (diff) | |
Merge pull request #1984 from alimirjamali/patch-1
Incorrect variable is used to check whether thumbnail exists
| -rw-r--r-- | youtube_dl/YoutubeDL.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 2fa34ebc9..b1f87415b 100644 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -845,7 +845,7 @@ class YoutubeDL(object):              if info_dict.get('thumbnail') is not None:                  thumb_format = determine_ext(info_dict['thumbnail'], u'jpg')                  thumb_filename = os.path.splitext(filename)[0] + u'.' + thumb_format -                if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(infofn)): +                if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(thumb_filename)):                      self.to_screen(u'[%s] %s: Thumbnail is already present' %                                     (info_dict['extractor'], info_dict['id']))                  else:  | 
