Commit 75269d56 authored by Cédric Le Ninivin's avatar Cédric Le Ninivin

erp5_xhtml_style: Remove unnecessary log

parent db793a34
...@@ -8,7 +8,6 @@ if dialog_category == 'object_report': ...@@ -8,7 +8,6 @@ if dialog_category == 'object_report':
elif dialog_category == 'object_exchange': elif dialog_category == 'object_exchange':
return sorted(actions.get('object_exchange', []) + actions.get('object_exchange_jio', []), key=lambda x: x["priority"]) return sorted(actions.get('object_exchange', []) + actions.get('object_exchange_jio', []), key=lambda x: x["priority"])
elif dialog_category == 'object_action': elif dialog_category == 'object_action':
context.log(actions.get('object_action', []))
return sorted(actions.get('object_action', []) + actions.get('object_action_jio', []), key=lambda x: x["priority"]) return sorted(actions.get('object_action', []) + actions.get('object_action_jio', []), key=lambda x: x["priority"])
if dialog_category != 'object_print': if dialog_category != 'object_print':
return actions.get(dialog_category, []) return actions.get(dialog_category, [])
......
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