diff options
author | Vasyl' Vavrychuk <vvavrychuk@gmail.com> | 2010-12-05 20:48:22 +0200 |
---|---|---|
committer | Vasyl' Vavrychuk <vvavrychuk@gmail.com> | 2010-12-05 20:56:27 +0200 |
commit | a9806fd83d7efc4cc1dcd11174c839f637d0c105 (patch) | |
tree | d9b105b66d47a17120adacf60328f47ac50e7ea9 | |
parent | 62cf7aaf9a3b9b74ba90d1c17303eb5cabd3f52c (diff) |
report_extraction was never called for GenericIE
-rwxr-xr-x | youtube-dl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube-dl b/youtube-dl index 22dd230ee..d0584a312 100755 --- a/youtube-dl +++ b/youtube-dl @@ -1619,6 +1619,7 @@ class GenericIE(InfoExtractor): self._downloader.trouble(u'ERROR: Invalid URL: %s' % url) return + self.report_extraction(video_id) # Start with something easy: JW Player in SWFObject mobj = re.search(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage) if mobj is None: |