Browse Source

[vimeo] Fix unused argument of the `_real_extract` method

totalwebcasting
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
a0088bdf93
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/vimeo.py

+ 1
- 1
youtube_dl/extractor/vimeo.py View File

@ -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:


Loading…
Cancel
Save