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

This commit is contained in:
Erik Johnston 2014-09-12 13:54:13 +01:00
parent 3ed39ad20e
commit ca1ae7cf9b

View File

@ -516,7 +516,7 @@ class StatePduStore(SQLBaseStore):
if not current:
logger.debug("get_unresolved_state_tree No current state.")
return return_value
return (return_value, None)
return_value.current_branch.append(current)