diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2012-09-27 20:48:16 +0200 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2012-09-27 20:48:16 +0200 | 
| commit | 5a5523698d39a25d6c123f2e1238b36dab0bed0d (patch) | |
| tree | b10a0f314994553a9daf0d89d113b67faee25e5b | |
| parent | 05a2c206bebcfc430962aa733cd6271c40339c16 (diff) | |
Add new field "extractor" to the info dictionary
| -rw-r--r-- | youtube_dl/FileDownloader.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py index 793fc3daf..38c6a519a 100644 --- a/youtube_dl/FileDownloader.py +++ b/youtube_dl/FileDownloader.py @@ -474,8 +474,8 @@ class FileDownloader(object):  				# Extract information from URL and process it  				videos = ie.extract(url)  				for video in videos or []: +					video['extractor'] = ie.IE_NAME  					try: -						video['provider'] = ie.IE_NAME  						self.increment_downloads()  						self.process_info(video)  					except UnavailableVideoError: | 
