BUGFIX: TypeError: Can't convert 'list' object to str implicitly (in emulator)

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
remotes/origin/2.0
Nico Schottelius 14 years ago
parent 12e6e9288e
commit 462ed49a74
  1. 4
      bin/cdist

@ -688,8 +688,8 @@ def emulator():
param_fd.close()
if(param_old != param):
print("Parameter differs: " + param_old + "vs," + param)
print("Source = " + old_object_source + "new =" + object_source)
print("Parameter " + param + " differs: " + " ".join(param_old) + " vs. " + param)
print("Sources: " + " ".join(old_object_source) + " and " + object_source)
sys.exit(1)
else:
param_fd = open(file, "w")

Loading…
Cancel
Save