Skip to content

Commit

Permalink
Fix opening test results in browser on Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
dakcarto committed Feb 26, 2014
1 parent afd6674 commit 4059c8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/python/utilities.py
Expand Up @@ -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)

0 comments on commit 4059c8f

Please sign in to comment.