diff options
author | Travis Ralston <travpc@gmail.com> | 2018-01-07 19:52:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-07 19:52:58 -0700 |
commit | eccfc8e928020e7b009979a629278718d49f8e24 (patch) | |
tree | ff751a17856724ff84f9de088a98ac0662eb670a /synapse/event_auth.py | |
parent | Merge pull request #2755 from matrix-org/richvdh-patch-1 (diff) | |
download | synapse-eccfc8e928020e7b009979a629278718d49f8e24.tar.xz |
Fix templating error with unban permission message
Fixes https://github.com/matrix-org/synapse/issues/2759 Signed-off-by: Travis Ralston <travpc@gmail.com>
Diffstat (limited to 'synapse/event_auth.py')
-rw-r--r-- | synapse/event_auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/event_auth.py b/synapse/event_auth.py index 061ee86b16..cd5627e36a 100644 --- a/synapse/event_auth.py +++ b/synapse/event_auth.py @@ -319,7 +319,7 @@ def _is_membership_change_allowed(event, auth_events): # TODO (erikj): Implement kicks. if target_banned and user_level < ban_level: raise AuthError( - 403, "You cannot unban user &s." % (target_user_id,) + 403, "You cannot unban user %s." % (target_user_id,) ) elif target_user_id != event.user_id: kick_level = _get_named_level(auth_events, "kick", 50) |