summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicardo Garcia <sarbalap+freshmeat@gmail.com>2011-01-28 19:59:47 +0100
committerRicardo Garcia <sarbalap+freshmeat@gmail.com>2011-01-28 19:59:47 +0100
commit6025795d952958391a2325dbdcf41a6baae8d8f4 (patch)
tree23a0c539a1db0637f02206345b60fa44df9b7b65
parente30189021db82c98019a9c055b9d81e4a7417b81 (diff)
downloadyoutube-dl-6025795d952958391a2325dbdcf41a6baae8d8f4.tar.gz
youtube-dl-6025795d952958391a2325dbdcf41a6baae8d8f4.tar.xz
youtube-dl-6025795d952958391a2325dbdcf41a6baae8d8f4.zip
Split some long lines
-rwxr-xr-xyoutube-dl18
1 files changed, 12 insertions, 6 deletions
diff --git a/youtube-dl b/youtube-dl
index 05869004b..8dd03daf3 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -2393,7 +2393,8 @@ if __name__ == '__main__':
 		parser.add_option('--playlist-end',
 				dest='playlistend', metavar='NUMBER', help='playlist video to end at (default is last)', default=-1)
 		parser.add_option('--dump-user-agent',
-				action='store_true', dest='dump_user_agent', help='display the current browser identification', default=False)
+				action='store_true', dest='dump_user_agent',
+				help='display the current browser identification', default=False)
 
 		authentication = optparse.OptionGroup(parser, 'Authentication Options')
 		authentication.add_option('-u', '--username',
@@ -2423,15 +2424,19 @@ if __name__ == '__main__':
 		verbosity.add_option('-e', '--get-title',
 				action='store_true', dest='gettitle', help='simulate, quiet but print title', default=False)
 		verbosity.add_option('--get-thumbnail',
-				action='store_true', dest='getthumbnail', help='simulate, quiet but print thumbnail URL', default=False)
+				action='store_true', dest='getthumbnail',
+				help='simulate, quiet but print thumbnail URL', default=False)
 		verbosity.add_option('--get-description',
-				action='store_true', dest='getdescription', help='simulate, quiet but print video description', default=False)
+				action='store_true', dest='getdescription',
+				help='simulate, quiet but print video description', default=False)
 		verbosity.add_option('--get-filename',
-				action='store_true', dest='getfilename', help='simulate, quiet but print output filename', default=False)
+				action='store_true', dest='getfilename',
+				help='simulate, quiet but print output filename', default=False)
 		verbosity.add_option('--no-progress',
 				action='store_true', dest='noprogress', help='do not print progress bar', default=False)
 		verbosity.add_option('--console-title',
-				action='store_true', dest='consoletitle', help='display progress in console titlebar', default=False)
+				action='store_true', dest='consoletitle',
+				help='display progress in console titlebar', default=False)
 		parser.add_option_group(verbosity)
 
 		filesystem = optparse.OptionGroup(parser, 'Filesystem Options')
@@ -2440,7 +2445,8 @@ if __name__ == '__main__':
 		filesystem.add_option('-l', '--literal',
 				action='store_true', dest='useliteral', help='use literal title in file name', default=False)
 		filesystem.add_option('-A', '--auto-number',
-				action='store_true', dest='autonumber', help='number downloaded files starting from 00000', default=False)
+				action='store_true', dest='autonumber',
+				help='number downloaded files starting from 00000', default=False)
 		filesystem.add_option('-o', '--output',
 				dest='outtmpl', metavar='TEMPLATE', help='output filename template')
 		filesystem.add_option('-a', '--batch-file',