diff options
author | Erik Johnston <erik@matrix.org> | 2014-09-24 16:19:29 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-09-24 16:19:29 +0100 |
commit | 327dcc98e378afb6c0d340017268dafbc9d0af17 (patch) | |
tree | 22c5a1562656857513baad2cec072041a42bdf52 /synapse | |
parent | SYN-70: Fix typo (diff) | |
download | synapse-327dcc98e378afb6c0d340017268dafbc9d0af17.tar.xz |
SYN-70: And fix another bug where I can't type
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/api/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index 80fe5d925d..5321864d51 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -372,7 +372,7 @@ class Auth(object): } removed = set(old_people.keys()) - set(new_people.keys()) - added = set(old_people.keys()) - set(new_people.keys()) + added = set(new_people.keys()) - set(old_people.keys()) same = set(old_people.keys()) & set(new_people.keys()) for r in removed: |