| Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/helpcommand.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/helpcommand.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/helpcommand.py
|
| index 6504e8b671f9fed27821ae7bf35dae0d9cd00e60..dc270148212beeb66760a62a0455be37c93f1c27 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/helpcommand.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/helpcommand.py
|
| @@ -38,7 +38,12 @@ class HelpCommand(Command):
|
|
|
| def __init__(self):
|
| options = [
|
| - optparse.make_option("-a", "--all-commands", action="store_true", dest="show_all_commands", help="Print all available commands"),
|
| + optparse.make_option(
|
| + "-a",
|
| + "--all-commands",
|
| + action="store_true",
|
| + dest="show_all_commands",
|
| + help="Print all available commands"),
|
| ]
|
| super(HelpCommand, self).__init__(options)
|
| # A hack used to pass --all-commands to _help_epilog even though it's called by the OptionParser.
|
|
|