summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-08-10 01:41:01 +0700
committerSergey M․ <dstftw@gmail.com>2014-08-10 01:41:01 +0700
commitc767dc74b8bdfdc75bba14d11b460a95f85ed08d (patch)
tree48d4aa286e8f0565b6f06b5df2d2cc0bde683894
parent56ca04f662d2c34713d85b0f0dc576e7c51275a8 (diff)
downloadyoutube-dl-c767dc74b8bdfdc75bba14d11b460a95f85ed08d.tar.gz
youtube-dl-c767dc74b8bdfdc75bba14d11b460a95f85ed08d.tar.xz
youtube-dl-c767dc74b8bdfdc75bba14d11b460a95f85ed08d.zip
[downloader/common] Fix typo
-rw-r--r--youtube_dl/downloader/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/downloader/common.py b/youtube_dl/downloader/common.py
index 917f3450e..9ce97f5fe 100644
--- 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: