about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-12-03 11:54:52 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-12-03 11:54:52 +0100
commit36a826a50dc5e53af8355f1233cc4f3ceba2e61b (patch)
treece566bf02c550fa8aa9da191abbecc36b43cf6aa
parent87968574293ef87b98f51cf0d7c0958b9f496a7a (diff)
downloadyoutube-dl-36a826a50dc5e53af8355f1233cc4f3ceba2e61b.tar.gz
youtube-dl-36a826a50dc5e53af8355f1233cc4f3ceba2e61b.tar.xz
youtube-dl-36a826a50dc5e53af8355f1233cc4f3ceba2e61b.zip
Clarify --download-archive help (#1757)
-rw-r--r--youtube_dl/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index 2eeef2ae9..48137ebe5 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -224,7 +224,7 @@ def parseOpts(overrideArguments=None):
                          default=None, type=int)
     selection.add_option('--download-archive', metavar='FILE',
                          dest='download_archive',
-                         help='Download only videos not present in the archive file. Record the IDs of all downloaded videos in it.')
+                         help='Download only videos not listed in the archive file. Record the IDs of all downloaded videos in it.')
 
 
     authentication.add_option('-u', '--username',