From 4059c8fd5bab8d12d824f68951461c31538c93c5 Mon Sep 17 00:00:00 2001 From: Larry Shaffer Date: Tue, 25 Feb 2014 17:36:04 -0700 Subject: [PATCH] Fix opening test results in browser on Ubuntu --- tests/src/python/utilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/python/utilities.py b/tests/src/python/utilities.py index 3ca311458645..9d716586cad7 100644 --- a/tests/src/python/utilities.py +++ b/tests/src/python/utilities.py @@ -255,7 +255,7 @@ def openInBrowserTab(url): else: # some Linux OS pause execution on webbrowser open, so background it cmd = 'import webbrowser;' \ - 'webbrowser.open_new_tab({0})'.format(url) + 'webbrowser.open_new_tab("{0}")'.format(url) subprocess.Popen([sys.executable, "-c", cmd], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)