Better help for new options
authorPhilipp Hagemeister <phihag@phihag.de>
Sat, 2 Feb 2013 13:44:22 +0000 (14:44 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Sat, 2 Feb 2013 13:44:22 +0000 (14:44 +0100)
README.md
youtube_dl/__init__.py
youtube_dl/version.py

index f637e0b1b99199600d6b2b04472bc9f6f9063406..1012d78b69b140d30f280e96ca7a0dada0978148 100644 (file)
--- a/README.md
+++ b/README.md
@@ -38,8 +38,8 @@ which means you can modify it, redistribute it or use it however you like.
     --reject-title REGEX     skip download for matching titles (regex or
                              caseless sub-string)
     --max-downloads NUMBER   Abort after downloading NUMBER files
-    --min-filesize SIZE      Do not download any videos smaller than SIZE (e.g. 50k or 44.6m)
-    --max-filesize SIZE      Do not download any videos larger than SIZE (e.g. 50k or 44.6m)
+    --min-filesize SIZE      Skip files smaller than this size
+    --max-filesize SIZE      Skip files larger than this size
 
 ## Filesystem Options:
     -t, --title              use title in file name
index 7ed9bfc0df830f4e5124a59f242cac3c267178c8..0a1041862300f415abb271774b3d4e2da6e47f4b 100644 (file)
@@ -150,9 +150,8 @@ def parseOpts():
     selection.add_option('--match-title', dest='matchtitle', metavar='REGEX',help='download only matching titles (regex or caseless sub-string)')
     selection.add_option('--reject-title', dest='rejecttitle', metavar='REGEX',help='skip download for matching titles (regex or caseless sub-string)')
     selection.add_option('--max-downloads', metavar='NUMBER', dest='max_downloads', help='Abort after downloading NUMBER files', default=None)
-
-    selection.add_option('--min-filesize', metavar='SIZE', dest='min_filesize', help="Skip files smaller than this size", default=None)
-    selection.add_option('--max-filesize', metavar='SIZE', dest='max_filesize', help="Skip files larger than this size", default=None)
+    selection.add_option('--min-filesize', metavar='SIZE', dest='min_filesize', help="Do not download any videos smaller than SIZE (e.g. 50k or 44.6m)", default=None)
+    selection.add_option('--max-filesize', metavar='SIZE', dest='max_filesize', help="Do not download any videos larger than SIZE (e.g. 50k or 44.6m)", default=None)
 
 
     authentication.add_option('-u', '--username',
index eed8f325c7a8d9e2ca958497b552b9bda72bc7e7..8b231ae8060704a1d2a47ed222377849c6719236 100644 (file)
@@ -1,2 +1,2 @@
 
-__version__ = '2013.02.01'
+__version__ = '2013.02.02'