Browse Source

fix old bug / joining wrong args

Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
2.3
Nico Schottelius 10 years ago
parent
commit
ffeaa3d06b
  1. 2
      cdist/exec/remote.py

2
cdist/exec/remote.py vendored

@ -149,6 +149,6 @@ class Remote(object):
except subprocess.CalledProcessError:
raise cdist.Error("Command failed: " + " ".join(command))
except OSError as error:
raise cdist.Error(" ".join(*args) + ": " + error.args[1])
raise cdist.Error(" ".join(command) + ": " + error.args[1])
except UnicodeDecodeError:
raise DecodeError(command)

Loading…
Cancel
Save