diff --git a/src/common/connection.py b/src/common/connection.py index 767daba3a..ca8dc19a2 100644 --- a/src/common/connection.py +++ b/src/common/connection.py @@ -764,7 +764,7 @@ class Connection(CommonConnection, ConnectionHandlers): else: self.disconnect() self.on_purpose = False - # END disconenctedReconnCB + # END disconnectedReconnCB def _connection_lost(self): log.debug('_connection_lost') diff --git a/src/common/pep.py b/src/common/pep.py index 16d2f3f60..0457f6667 100644 --- a/src/common/pep.py +++ b/src/common/pep.py @@ -556,7 +556,7 @@ class ConnectionPEP(object): def send_activity(self, activity, subactivity=None, message=None): if self.connected == 1: # We are connecting, keep activity in mem and send it when we'll be - # conencted + # connected self.to_be_sent_activity = (activity, subactivity, message) return if not self.pep_supported: @@ -581,7 +581,7 @@ class ConnectionPEP(object): def send_mood(self, mood, message=None): if self.connected == 1: # We are connecting, keep mood in mem and send it when we'll be - # conencted + # connected self.to_be_sent_mood = (mood, message) return if not self.pep_supported: @@ -605,7 +605,7 @@ class ConnectionPEP(object): items=None): if self.connected == 1: # We are connecting, keep tune in mem and send it when we'll be - # conencted + # connected self.to_be_sent_tune = (artist, title, source, track, length, items) return if not self.pep_supported: @@ -640,7 +640,7 @@ class ConnectionPEP(object): def send_nickname(self, nick): if self.connected == 1: # We are connecting, keep nick in mem and send it when we'll be - # conencted + # connected self.to_be_sent_nick = nick return if not self.pep_supported: @@ -659,7 +659,7 @@ class ConnectionPEP(object): def send_location(self, info): if self.connected == 1: # We are connecting, keep location in mem and send it when we'll be - # conencted + # connected self.to_be_sent_location = info return if not self.pep_supported: diff --git a/src/roster_window.py b/src/roster_window.py index 2a4a8164b..f55418b46 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -5716,7 +5716,7 @@ class RosterWindow: Bring up the conference join dialog, when CTRL+J accelerator is being activated """ - # find a conencted account: + # find a connected account: for account in gajim.connections: if gajim.account_is_connected(account): break