about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-12-10 20:43:16 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-12-10 20:43:16 +0100
commita0088bdf9342408a1fc5033a0f4599bae3b9aa0b (patch)
treeedb242b6a5dec0293466bfe38b09d3014de3e6b5
parent48ad51b243b1fbca7f1e72e209f38f5ca90335ad (diff)
downloadyoutube-dl-a0088bdf9342408a1fc5033a0f4599bae3b9aa0b.tar.gz
youtube-dl-a0088bdf9342408a1fc5033a0f4599bae3b9aa0b.tar.xz
youtube-dl-a0088bdf9342408a1fc5033a0f4599bae3b9aa0b.zip
[vimeo] Fix unused argument of the `_real_extract` method
-rw-r--r--youtube_dl/extractor/vimeo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py
index 7c7f537d8..ea4409528 100644
--- 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: