fix typos
authorPhilipp Hagemeister <phihag@phihag.de>
Thu, 17 Oct 2013 22:49:45 +0000 (00:49 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Thu, 17 Oct 2013 22:49:45 +0000 (00:49 +0200)
youtube_dl/YoutubeDL.py
youtube_dl/extractor/common.py

index fd98321f17b814557c0a77ecdc79fc1dd12f495e..296c0f9924940d145c95226ba0dd27a61f700253 100644 (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)
index 2a5a85dc67b4f7a57d04d4f21c1608aa2c47f7f3..d4af3b5ebf119ef6612093bd6a5c03d1cc6cc380 100644 (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):