diff options
author | David Baker <dave@matrix.org> | 2016-01-15 10:07:01 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-01-15 10:07:01 +0000 |
commit | ac12b6d33278713d12d5854997f698322b4dacb7 (patch) | |
tree | 99435a203ac323ee4b59b57677b79ce9d205d440 /synapse/api | |
parent | Merge pull request #499 from matrix-org/invalid_user_name (diff) | |
parent | M_INVALID_USERNAME to be consistent with the parameter name (diff) | |
download | synapse-ac12b6d33278713d12d5854997f698322b4dacb7.tar.xz |
Merge branch 'invalid_user_name' into develop
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/errors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/errors.py b/synapse/api/errors.py index e6d32acced..ce0fc53668 100644 --- a/synapse/api/errors.py +++ b/synapse/api/errors.py @@ -42,7 +42,7 @@ class Codes(object): EXCLUSIVE = "M_EXCLUSIVE" THREEPID_AUTH_FAILED = "M_THREEPID_AUTH_FAILED" THREEPID_IN_USE = "THREEPID_IN_USE" - INVALID_USER_NAME = "M_INVALID_USER_NAME" + INVALID_USERNAME = "M_INVALID_USERNAME" class CodeMessageException(RuntimeError): |