diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-07-30 08:27:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-30 08:27:32 +0100 |
commit | 1d7511c199108d9b6747fe0b62c6710085517e16 (patch) | |
tree | 523ed3f90439a07cf376d35cbd83d2d0d58cca20 | |
parent | fix if condition (diff) | |
download | synapse-t3chguy/do_not_create_room_invalid_power_level_content_override.tar.xz |
tweak error wording github/t3chguy/do_not_create_room_invalid_power_level_content_override t3chguy/do_not_create_room_invalid_power_level_content_override
-rw-r--r-- | synapse/handlers/room.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py index d1f5377ceb..6e47fe7867 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py @@ -568,7 +568,7 @@ class RoomCreationHandler(BaseHandler): ): raise SynapseError( 400, - "Not a valid power_level_content_override, did not contain %s" + "Not a valid power_level_content_override: 'users' did not contain %s" % (user_id,), ) |