another python 3 fix on dict

This commit is contained in:
Joseph Lawson 2014-10-21 15:55:08 -04:00
parent a8b967eab0
commit 9301b46346

View File

@ -68,7 +68,7 @@ get_attribute_output = {
outputs_template = dict(list(dummy_template.items()) + list(output_dict.items()))
bad_outputs_template = dict(list(dummy_template.items()) + list(bad_output.items()))
get_attribute_outputs_template = dict(dummy_template.items() + get_attribute_output.items())
get_attribute_outputs_template = dict(list(dummy_template.items()) + list(get_attribute_output.items()))
dummy_template_json = json.dumps(dummy_template)
name_type_template_json = json.dumps(name_type_template)