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

Fix bug where assumed dict was namedtuple

parent 473a239d
No related branches found
No related tags found
No related merge requests found
...@@ -59,7 +59,7 @@ class TransactionStore(SQLBaseStore): ...@@ -59,7 +59,7 @@ class TransactionStore(SQLBaseStore):
allow_none=True, allow_none=True,
) )
if result and result.response_code: if result and result["response_code"]:
return result["response_code"], result["response_json"] return result["response_code"], result["response_json"]
else: else:
return None return None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment