summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorNeil Johnson <neil@matrix.org>2019-01-15 14:38:15 +0000
committerNeil Johnson <neil@matrix.org>2019-01-15 14:38:15 +0000
commit9ec56d693577232dbb9f75f58a44c01a999fbea9 (patch)
tree1a2d673ed17534cfcb75ec54dddf396a85fe5e4c /synapse
parentMerge branch 'release-v0.34.1.1' into develop (diff)
downloadsynapse-9ec56d693577232dbb9f75f58a44c01a999fbea9.tar.xz
ALL_USER_TYPES should be a tuple
Diffstat (limited to 'synapse')
-rw-r--r--synapse/api/constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py

index 87bc1cb53d..022f772714 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py
@@ -128,4 +128,4 @@ class UserTypes(object): 'admin' and 'guest' users should also be UserTypes. Normal users are type None """ SUPPORT = "support" - ALL_USER_TYPES = (SUPPORT) + ALL_USER_TYPES = (SUPPORT,)