Browse Source

extend not append

Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
feature_files_export
Nico Schottelius 11 years ago
parent
commit
72fb77f135
  1. 2
      lib/cdist/exec/remote.py

2
lib/cdist/exec/remote.py vendored

@ -104,7 +104,7 @@ class Remote(object):
# variable declarations
if env:
remote_env = ["%s=%s" % item for item in env.items()]
cmd.append(remote_env)
cmd.extend(remote_env)
cmd.extend(command)

Loading…
Cancel
Save