Commit fb001e06 authored by Jens Vagelpohl's avatar Jens Vagelpohl

- be more careful trying to extract the manager_bypass setting to

  make sure older export files remain supported.
parent e4cf8f6a
...@@ -162,7 +162,7 @@ class WorkflowDefinitionConfigurator( Implicit ): ...@@ -162,7 +162,7 @@ class WorkflowDefinitionConfigurator( Implicit ):
except ValueError: except ValueError:
# Don't fail on export files that do not have the description field! # Don't fail on export files that do not have the description field!
description = '' description = ''
manager_bypass = _getNodeAttributeBoolean(root, 'manager_bypass') manager_bypass = _queryNodeAttributeBoolean(root,'manager_bypass',False)
creation_guard = _extractCreationGuard(root, encoding) creation_guard = _extractCreationGuard(root, encoding)
state_variable = _getNodeAttribute( root, 'state_variable', encoding ) state_variable = _getNodeAttribute( root, 'state_variable', encoding )
initial_state = _getNodeAttribute( root, 'initial_state', encoding ) initial_state = _getNodeAttribute( root, 'initial_state', encoding )
......
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