aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2012-09-27 11:45:07 -0700
committerPhilipp Hagemeister <phihag@phihag.de>2012-09-27 11:45:07 -0700
commit05a2c206bebcfc430962aa733cd6271c40339c16 (patch)
tree871b1924507554743f635f81eed65ecb35d6ca02 /youtube_dl
parent8ca21983d87a65a81ae182b64daa791169a5615e (diff)
parentae16f68f4abd67bf9b0386537620ca17c342ff98 (diff)
downloadyoutube-dl-05a2c206bebcfc430962aa733cd6271c40339c16.tar.xz
Merge pull request #425 from danut007ro/master
Provider (youtube, etc) is now saved in info_dict
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/FileDownloader.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py
index 14e872a98..793fc3daf 100644
--- a/youtube_dl/FileDownloader.py
+++ b/youtube_dl/FileDownloader.py
@@ -475,6 +475,7 @@ class FileDownloader(object):
videos = ie.extract(url)
for video in videos or []:
try:
+ video['provider'] = ie.IE_NAME
self.increment_downloads()
self.process_info(video)
except UnavailableVideoError: