diff options
| author | Yen Chi Hsuan <yan12125@gmail.com> | 2015-04-22 15:05:35 +0800 | 
|---|---|---|
| committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-04-22 15:05:35 +0800 | 
| commit | 8be2bdfabd7a24936697f6681bd417de414a554a (patch) | |
| tree | e48f400b326745eb1d3d3eafe52b01d2b384d4ae | |
| parent | b4c08069638896e6c565536d52ab8fc9226c91bd (diff) | |
[YoutubeDL] Remove the redundant assignment to old_filename
Caused by commmit 592e97e8550389e22b716eb33c30584aa3a8d656
| -rwxr-xr-x | youtube_dl/YoutubeDL.py | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 5b2c3aa38..0fdcf1b0b 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1516,7 +1516,6 @@ class YoutubeDL(object):              pps_chain.extend(ie_info['__postprocessors'])          pps_chain.extend(self._pps)          for pp in pps_chain: -            old_filename = info['filepath']              try:                  files_to_delete, info = pp.run(info)              except PostProcessingError as e: | 
