about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-07-24 11:52:16 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-07-24 11:52:18 +0200
commit4e99f48817d1218fedc7c1b600c167553f82b604 (patch)
tree4f8a655e38a1ac0913ffc70dfb38e17053521234
parenta11165ecc6c2123dece4218d311707aff191009e (diff)
downloadyoutube-dl-4e99f48817d1218fedc7c1b600c167553f82b604.tar.gz
youtube-dl-4e99f48817d1218fedc7c1b600c167553f82b604.tar.xz
youtube-dl-4e99f48817d1218fedc7c1b600c167553f82b604.zip
deprecate --title
This is the default already. If you want a specific format, pick it with -o or --id.
-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 e0b629621..cb8847111 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -473,7 +473,7 @@ def parseOpts(overrideArguments=None):
             action='store_true', dest='restrictfilenames',
             help='Restrict filenames to only ASCII characters, and avoid "&" and spaces in filenames', default=False)
     filesystem.add_option('-t', '--title',
-            action='store_true', dest='usetitle', help='use title in file name (default)', default=False)
+            action='store_true', dest='usetitle', help='[deprecated] use title in file name (default)', default=False)
     filesystem.add_option('-l', '--literal',
             action='store_true', dest='usetitle', help='[deprecated] alias of --title', default=False)
     filesystem.add_option('-w', '--no-overwrites',