diff options
author | Erik Johnston <erik@matrix.org> | 2019-04-02 11:15:19 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-04-02 11:20:06 +0100 |
commit | c75e2017f16bf18127f4f70f69100b8343a139c4 (patch) | |
tree | 4e85259a4db02600aee024ad22b73d1aee05cc57 /synapse/storage/registration.py | |
parent | Newsfile (diff) | |
download | synapse-c75e2017f16bf18127f4f70f69100b8343a139c4.tar.xz |
Fixup docstrings
Diffstat (limited to 'synapse/storage/registration.py')
-rw-r--r-- | synapse/storage/registration.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/storage/registration.py b/synapse/storage/registration.py index 4d64107e16..8ada655725 100644 --- a/synapse/storage/registration.py +++ b/synapse/storage/registration.py @@ -358,9 +358,9 @@ class RegistrationWorkerStore(SQLBaseStore): ) def remove_user_bound_threepid(self, user_id, medium, address, id_server): - """The server proxied a bind request to the given identity server on - behalf of the given user. We need to remember this in case the user - asks us to unbind the threepid. + """The server proxied an unbind request to the given identity server on + behalf of the given user, so we remove the mapping of threepid to + identity server. Args: user_id (str) |