Commit 9af6a669 authored by Romain Courteaud's avatar Romain Courteaud

WIP TemplateTool: draft bt5 crashes

parent 2c82b0ec
......@@ -133,13 +133,17 @@ class TemplateTool (BaseTool):
if state == 'installed':
return bt
if state == 'not_installed':
last_transition = bt.workflow_history \
['business_template_installation_workflow'][-1]
if last_transition['action'] == 'uninstall': # There is not uninstalled state !
t = last_transition['time']
if last_time < t:
last_bt = None
last_time = t
try:
last_transition = bt.workflow_history \
['business_template_installation_workflow'][-1]
except TypeError:
continue
else:
if last_transition['action'] == 'uninstall': # There is not uninstalled state !
t = last_transition['time']
if last_time < t:
last_bt = None
last_time = t
elif state == 'replaced' and not strict:
t = bt.workflow_history \
['business_template_installation_workflow'][-1]['time']
......
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