commit: a0088bdf9342408a1fc5033a0f4599bae3b9aa0b
parent 48ad51b243b1fbca7f1e72e209f38f5ca90335ad
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date: Tue, 10 Dec 2013 20:43:16 +0100
[vimeo] Fix unused argument of the `_real_extract` method
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py
@@ -115,7 +115,7 @@ class VimeoIE(InfoExtractor):
def _real_initialize(self):
self._login()
- def _real_extract(self, url, new_video=True):
+ def _real_extract(self, url):
url, data = unsmuggle_url(url)
headers = std_headers
if data is not None: