Rverting manually (limited connectivity) to original.

Will be fixed in a separate branch.
remotes/origin/4.0
Darko Poljak 9 years ago
parent e937a939ad
commit 3ae042f2cd
  1. 2
      cdist/exec/local.py

@ -195,7 +195,7 @@ class Local(object):
except subprocess.CalledProcessError:
raise cdist.Error("Command failed: " + " ".join(command))
except OSError as error:
raise cdist.Error(" ".join((str(x) for x in error.args)))
raise cdist.Error(" ".join(*args) + ": " + error.args[1])
finally:
if message_prefix:
message.merge_messages()

Loading…
Cancel
Save