diff options
author | Sergey M․ <dstftw@gmail.com> | 2014-08-10 01:41:01 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2014-08-10 01:41:01 +0700 |
commit | c767dc74b8bdfdc75bba14d11b460a95f85ed08d (patch) | |
tree | 48d4aa286e8f0565b6f06b5df2d2cc0bde683894 /youtube_dl/downloader/common.py | |
parent | 56ca04f662d2c34713d85b0f0dc576e7c51275a8 (diff) |
[downloader/common] Fix typo
Diffstat (limited to 'youtube_dl/downloader/common.py')
-rw-r--r-- | youtube_dl/downloader/common.py | 2 |
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: |