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:
		
					parent
					
						
							
								12e6e9288e
							
						
					
				
			
			
				commit
				
					
						462ed49a74
					
				
			
		
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -688,8 +688,8 @@ def emulator(): | ||||||
|                param_fd.close() |                param_fd.close() | ||||||
|                 |                 | ||||||
|                if(param_old != param): |                if(param_old != param): | ||||||
|                   print("Parameter differs: " + param_old + "vs," + param) |                   print("Parameter " + param + " differs: " + " ".join(param_old) + " vs. " + param) | ||||||
|                   print("Source = " + old_object_source + "new =" + object_source) |                   print("Sources: " + " ".join(old_object_source) + " and " + object_source) | ||||||
|                   sys.exit(1) |                   sys.exit(1) | ||||||
|          else: |          else: | ||||||
|             param_fd = open(file, "w") |             param_fd = open(file, "w") | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue