Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix incorrect attribute name
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Sep 9, 2016
1 parent 464ffd1 commit af4701b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/federation/transaction_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def enqueue_edu(self, edu, key=None):
if key:
self.pending_edus_keyed_by_dest.setdefault(
destination, {}
)[(edu.type, key)] = edu
)[(edu.edu_type, key)] = edu
else:
self.pending_edus_by_dest.setdefault(destination, []).append(edu)

Expand Down

0 comments on commit af4701b

Please sign in to comment.