From 5a60effcc057f442a85152872bd4759df9fd8136 Mon Sep 17 00:00:00 2001 From: Adrian Date: Tue, 4 Sep 2018 12:15:10 +0200 Subject: [PATCH] Fix spelling "Authentification" doesn't exist --- matrix_client/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/matrix_client/api.py b/matrix_client/api.py index 718332fc..d1941104 100644 --- a/matrix_client/api.py +++ b/matrix_client/api.py @@ -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"