Skip to content
Snippets Groups Projects
Commit ca1ae7cf authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix bug where we didn't return a tuple when expected.

parent 3ed39ad2
Branches
Tags
No related merge requests found
...@@ -516,7 +516,7 @@ class StatePduStore(SQLBaseStore): ...@@ -516,7 +516,7 @@ class StatePduStore(SQLBaseStore):
if not current: if not current:
logger.debug("get_unresolved_state_tree No current state.") logger.debug("get_unresolved_state_tree No current state.")
return return_value return (return_value, None)
return_value.current_branch.append(current) return_value.current_branch.append(current)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment