Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions matrix_client/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -995,10 +995,10 @@ def _make_txn_id(self):
return txn_id

def whoami(self):
"""Determine user_id for authentificated user.
"""Determine user_id for authenticated user.
"""
if not self.token:
raise MatrixError("Authentification required.")
raise MatrixError("Authentication required.")
return self._send(
"GET",
"/account/whoami"
Expand Down