diff options
author | David Baker <dave@matrix.org> | 2016-01-15 10:06:34 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-01-15 10:06:34 +0000 |
commit | 5819b7a78ccbb07914d9c03ab426df084ba86f2c (patch) | |
tree | 99435a203ac323ee4b59b57677b79ce9d205d440 /synapse/api/errors.py | |
parent | Add specific error code for invalid user names. (diff) | |
download | synapse-5819b7a78ccbb07914d9c03ab426df084ba86f2c.tar.xz |
M_INVALID_USERNAME to be consistent with the parameter name
Diffstat (limited to 'synapse/api/errors.py')
-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): |