Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2008-02-07 11:27:46 (GMT)
committer Morgan Collett <morgan.collett@gmail.com>2008-02-12 14:21:33 (GMT)
commitcd830a4602b4dfe4e4a63c19b84174e60575446f (patch)
tree0df314d86c2eb13d24f32ec216967ee5483ec0cc
parenta7f7fb2af40f550893069e2ac8b525445893f5fb (diff)
s/authentification/authentication
-rw-r--r--src/server_plugin.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server_plugin.py b/src/server_plugin.py
index 514f949..35e45bc 100644
--- a/src/server_plugin.py
+++ b/src/server_plugin.py
@@ -78,7 +78,7 @@ class ServerPlugin(TelepathyPlugin):
def _get_account_info(self):
"""Retrieve connection manager parameters for this account.
We first try to connect without the register flag. If the connection
- fails because of an authentification error we'll try to register
+ fails because of an authentication error we'll try to register
the account.
"""
server = self._owner.get_server()
@@ -304,8 +304,8 @@ class ServerPlugin(TelepathyPlugin):
def _handle_connection_status_change(self, status, reason):
"""Override TelepathyPlugin implementation to manage connection errors
- due to authentification problem. If the connection fails because of an
- authentification error that's probably because the account isn't
+ due to authentication problem. If the connection fails because of an
+ authentication error that's probably because the account isn't
registered yet on the server. So we try to register it."""
if status == self._conn_status:
return
@@ -313,7 +313,7 @@ class ServerPlugin(TelepathyPlugin):
if (status == CONNECTION_STATUS_DISCONNECTED and
reason == CONNECTION_STATUS_REASON_AUTHENTICATION_FAILED and
not self._account['register']):
- _logger.debug('Authentification failed. Try to register the account')
+ _logger.debug('Authentication failed. Trying to register the account')
self._account['register'] = True
self._stop()
self._init_connection()