aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-04-22 15:05:35 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-04-22 15:05:35 +0800
commit8be2bdfabd7a24936697f6681bd417de414a554a (patch)
treee48f400b326745eb1d3d3eafe52b01d2b384d4ae /youtube_dl
parentb4c08069638896e6c565536d52ab8fc9226c91bd (diff)
downloadyoutube-dl-8be2bdfabd7a24936697f6681bd417de414a554a.tar.xz
[YoutubeDL] Remove the redundant assignment to old_filename
Caused by commmit 592e97e8550389e22b716eb33c30584aa3a8d656
Diffstat (limited to 'youtube_dl')
-rwxr-xr-xyoutube_dl/YoutubeDL.py1
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: