Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(534)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/helpcommand.py

Issue 2014063002: Run format-webkit on webkitpy code (without string conversion). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698