summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicardo Garcia <sarbalap+freshmeat@gmail.com>2010-08-12 18:28:34 +0200
committerRicardo Garcia <sarbalap+freshmeat@gmail.com>2010-10-31 11:28:40 +0100
commit8a9f53bebfeeb546ea0222098c64add781cb50b8 (patch)
tree162fedd4f2d4e9559df7ba3c78dbd31363c28343
parent80cc23304f75c4b1d2ac27e7fa6b5504df6e6687 (diff)
downloadyoutube-dl-8a9f53bebfeeb546ea0222098c64add781cb50b8.tar.gz
youtube-dl-8a9f53bebfeeb546ea0222098c64add781cb50b8.tar.xz
youtube-dl-8a9f53bebfeeb546ea0222098c64add781cb50b8.zip
Fix typo in report_resuming_byte doc string (fixes issue #188)
-rwxr-xr-xyoutube-dl2
1 files changed, 1 insertions, 1 deletions
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):