Commit 8e6ca9e2 authored by Nicolas Dumazet's avatar Nicolas Dumazet

--long_option='does not work' -> --long_option 'works'


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@29756 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent f17644d7
......@@ -467,8 +467,7 @@ class TemplateTool (BaseTool):
if RESPONSE is not None:
RESPONSE.setHeader('Content-type', 'text/plain')
test_cmd_args = [sys.executable, getUnitTestFile()]
test_cmd_args.append('--erp5_sql_connection_string="%s"'
% sql_connection_string)
test_cmd_args += ['--erp5_sql_connection_string', sql_connection_string]
test_cmd_args += test_list
process = subprocess.Popen(test_cmd_args,
stdout=subprocess.PIPE,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment