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) |