fix some typo in comments

This commit is contained in:
Yann Leboulanger 2010-01-25 18:29:57 +01:00
parent 1cbb9ad3fb
commit 53a974114a
3 changed files with 7 additions and 7 deletions

View File

@ -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')

View File

@ -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:

View File

@ -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