From a2a45a77fd2978ed4d8e5eb1994993c47a79a420 Mon Sep 17 00:00:00 2001 From: Alan Jeffrey Date: Fri, 19 Aug 2016 13:46:28 -0500 Subject: [PATCH] Removed extra space from --userscripts option. --- etc/ci/performance/runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/ci/performance/runner.py b/etc/ci/performance/runner.py index 690a7445333..ccb6b146c9c 100644 --- a/etc/ci/performance/runner.py +++ b/etc/ci/performance/runner.py @@ -42,7 +42,7 @@ def execute_test(url, command, timeout): def get_servo_command(url): ua_script_path = "{}/user-agent-js".format(os.getcwd()) return ["./servo/servo", url, - " --userscripts", ua_script_path, + "--userscripts", ua_script_path, "-x", "-o", "output.png"]