From: Ricardo Garcia Date: Thu, 12 Aug 2010 16:28:34 +0000 (+0200) Subject: Fix typo in report_resuming_byte doc string (fixes issue #188) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=8a9f53bebfeeb546ea0222098c64add781cb50b8;p=youtube-dl Fix typo in report_resuming_byte doc string (fixes issue #188) --- diff --git a/youtube-dl b/youtube-dl index d54694954..b41b57ea8 100755 --- a/youtube-dl +++ b/youtube-dl @@ -353,7 +353,7 @@ class FileDownloader(object): (percent_str, data_len_str, speed_str, eta_str), skip_eol=True) def report_resuming_byte(self, resume_len): - """Report attemtp to resume at given byte.""" + """Report attempt to resume at given byte.""" self.to_stdout(u'[download] Resuming download at byte %s' % resume_len) def report_retry(self, count, retries):