Commit 08fda24b by Ned Batchelder

Oops, didn't use the parameter we were passed in.

parent ca16c755
......@@ -37,7 +37,7 @@ def configure(command, bin_path, user=None):
"""
cmd_argv = []
if user:
cmd_argv.extend(['sudo', '-u', 'sandbox'])
cmd_argv.extend(['sudo', '-u', user])
cmd_argv.append(bin_path)
# Command-specific arguments
......
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