Browse Source

fix typos

rtmp_test
Philipp Hagemeister 11 years ago
parent
commit
416a5efce7
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      youtube_dl/YoutubeDL.py
  2. +1
    -1
      youtube_dl/extractor/common.py

+ 1
- 1
youtube_dl/YoutubeDL.py View File

@ -512,7 +512,7 @@ class YoutubeDL(object):
formats_to_download = formats
else:
# We can accept formats requestd in the format: 34/10/5, we pick
# the first that is availble, starting from left
# the first that is available, starting from left
req_formats = req_format.split('/')
for rf in req_formats:
matches = filter(lambda f:f['format_id'] == rf ,formats)


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

@ -365,7 +365,7 @@ class SearchInfoExtractor(InfoExtractor):
def _get_n_results(self, query, n):
"""Get a specified number of results for a query"""
raise NotImplementedError("This method must be implemented by sublclasses")
raise NotImplementedError("This method must be implemented by subclasses")
@property
def SEARCH_KEY(self):


Loading…
Cancel
Save