diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-07-11 12:12:23 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-07-11 12:12:30 +0200 |
commit | 690e872c51646fd99147f33be38fbbb74c91d8fb (patch) | |
tree | a2070faf61536e3cd85756558e8e8acdef7cb7c3 /youtube_dl/extractor/common.py | |
parent | 81082e046eef7afa012076546b22e9f43d0c1e0f (diff) |
Remove video_result helper method
Calling it was more complex then actually including the type in the video info
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r-- | youtube_dl/extractor/common.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 1d98222ce..1bd5538ca 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -169,11 +169,6 @@ class InfoExtractor(object): self.to_screen(u'Logging in') #Methods for following #608 - #They set the correct value of the '_type' key - def video_result(self, video_info): - """Returns a video""" - video_info['_type'] = 'video' - return video_info def url_result(self, url, ie=None): """Returns a url that points to a page that should be processed""" #TODO: ie should be the class used for getting the info |