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

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-09-22 18:43:36 +02:00
parent 12e6e9288e
commit 462ed49a74
1 changed files with 2 additions and 2 deletions

View File

@ -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")