Commit 2c08de36 authored by Ayush Tiwari's avatar Ayush Tiwari

Business Template: Fix syntax error while updating modified_object_list

(fix: e46ade7a)
parent 420660e6
......@@ -2232,12 +2232,12 @@ class RegisteredVersionPrioritySelectionTemplateItem(BaseTemplateItem):
if new_object != old_object:
modified_object_list[path] = 'Modified', class_name_prefix
else:
modified_object_list.update[path] = 'New', class_name_prefix
modified_object_list[path] = 'New', class_name_prefix
# Get removed objects
for path in installed_item._objects:
if path not in self._objects:
modified_object_list.update[path] = 'Removed', class_name_prefix
modified_object_list[path] = 'Removed', class_name_prefix
return modified_object_list
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment