diff options
author | Eric Windisch <eric@cloudscaling.com> | 2011-03-09 01:26:53 -0500 |
---|---|---|
committer | Eric Windisch <eric@cloudscaling.com> | 2011-03-09 01:26:53 -0500 |
commit | 1d7358e70379607c9cce02307f4336efbd135a5d (patch) | |
tree | 3ca69833a9a25b88fb8b0982881ea11d3368bf6b /nova/utils.py | |
parent | 0a52e9c99e059ff91e71f3756e4875801b7db1dc (diff) | |
download | nova-1d7358e70379607c9cce02307f4336efbd135a5d.tar.gz nova-1d7358e70379607c9cce02307f4336efbd135a5d.tar.xz nova-1d7358e70379607c9cce02307f4336efbd135a5d.zip |
execvp: unit tests pass
Diffstat (limited to 'nova/utils.py')
-rw-r--r-- | nova/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nova/utils.py b/nova/utils.py index 9b51f8b40..7ddf056ea 100644 --- a/nova/utils.py +++ b/nova/utils.py @@ -135,6 +135,7 @@ def execute(*cmd, **kwargs): stdin=kwargs.get('stdin', subprocess.PIPE) stdout=kwargs.get('stdout', subprocess.PIPE) stderr=kwargs.get('stderr', subprocess.PIPE) + cmd=map(str,cmd) LOG.debug(_("Running cmd (subprocess): %s"), ' '.join(cmd)) env = os.environ.copy() |