Skip to content

Commit 4059c8f

Browse files
committedFeb 26, 2014
Fix opening test results in browser on Ubuntu
1 parent afd6674 commit 4059c8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tests/src/python/utilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def openInBrowserTab(url):
255255
else:
256256
# some Linux OS pause execution on webbrowser open, so background it
257257
cmd = 'import webbrowser;' \
258-
'webbrowser.open_new_tab({0})'.format(url)
258+
'webbrowser.open_new_tab("{0}")'.format(url)
259259
subprocess.Popen([sys.executable, "-c", cmd],
260260
stdout=subprocess.PIPE,
261261
stderr=subprocess.STDOUT)

0 commit comments

Comments
 (0)
Please sign in to comment.