diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2011-07-07 14:10:25 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2011-07-07 14:10:25 +0200 |
commit | a1cab7cead8554913ba3d0362b3d6fb11c8c7f90 (patch) | |
tree | 0febe7ae4c8a2f26d9c3c827a3803342b14f9725 | |
parent | 8b95c38707b8e6c9f2ce6a754d77b2b8f458cc14 (diff) |
call increment_downloads in blip.tv extractor
-rwxr-xr-x | youtube-dl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube-dl b/youtube-dl index bb0f90a9c..466802434 100755 --- a/youtube-dl +++ b/youtube-dl @@ -2646,6 +2646,8 @@ class BlipTVIE(InfoExtractor): raise ValueError('Can not determine filename extension') ext = umobj.group(1) + self._downloader.increment_downloads() + info = { 'id': data['item_id'], 'url': video_url, |