diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-06-26 16:32:47 +0200 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-06-26 16:32:47 +0200 | 
| commit | 2e3252801219dc82c379ba00a30c629039b06a24 (patch) | |
| tree | 02220e5a82788e264f8fbb3adb468a6b0088a54b | |
| parent | 52e8e1dc88ad177abcbb6a52b3b262527f7a1f20 (diff) | |
FileDownloader: fixed call to "report_error" of YoutubeDL
It was being called as "error"
| -rw-r--r-- | youtube_dl/FileDownloader.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py index 445f3e85e..155895fe2 100644 --- a/youtube_dl/FileDownloader.py +++ b/youtube_dl/FileDownloader.py @@ -137,7 +137,7 @@ class FileDownloader(object):          self.ydl.report_warning(*args, **kargs)      def report_error(self, *args, **kargs): -        self.ydl.error(*args, **kargs) +        self.ydl.report_error(*args, **kargs)      def slow_down(self, start_time, byte_counter):          """Sleep if the download speed is over the rate limit.""" | 
