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

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

Issue 1839193004: Run auto-formatter (autopep8) on webkitpy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 9 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/abstractlocalservercommand.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/abstractlocalservercommand.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/abstractlocalservercommand.py
index 0056684436c1017c5fdbc29b7ee424821c726337..3d4ada66fa62535dc3f2d291a5857c91553bad6a 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/abstractlocalservercommand.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/abstractlocalservercommand.py
@@ -35,7 +35,8 @@ class AbstractLocalServerCommand(AbstractDeclarativeCommand):
def __init__(self):
options = [
make_option("--httpd-port", action="store", type="int", default=8127, help="Port to use for the HTTP server"),
- make_option("--no-show-results", action="store_false", default=True, dest="show_results", help="Don't launch a browser with the rebaseline server"),
+ make_option("--no-show-results", action="store_false", default=True, dest="show_results",
+ help="Don't launch a browser with the rebaseline server"),
]
AbstractDeclarativeCommand.__init__(self, options=options)

Powered by Google App Engine
This is Rietveld 408576698