commit: c767dc74b8bdfdc75bba14d11b460a95f85ed08d
parent 56ca04f662d2c34713d85b0f0dc576e7c51275a8
Author: Sergey M․ <dstftw@gmail.com>
Date: Sun, 10 Aug 2014 01:41:01 +0700
[downloader/common] Fix typo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/downloader/common.py b/youtube_dl/downloader/common.py
@@ -292,7 +292,7 @@ class FileDownloader(object):
def real_download(self, filename, info_dict):
"""Real download process. Redefine in subclasses."""
- raise NotImplementedError(u'This method must be implemented by sublcasses')
+ raise NotImplementedError(u'This method must be implemented by subclasses')
def _hook_progress(self, status):
for ph in self._progress_hooks: