summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-10-05 00:37:52 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-10-05 00:37:52 +0000
commitc9f4370598a904383f206c907c7a1c8b47fa3bca (patch)
tree91f05bfdb14cbca32e401ff5bf3815d9ec267bb6 /src
parent8caf7651a90861fadf9c05585f177c4beac3d7ac (diff)
downloadpoezio-c9f4370598a904383f206c907c7a1c8b47fa3bca.tar.gz
poezio-c9f4370598a904383f206c907c7a1c8b47fa3bca.tar.bz2
poezio-c9f4370598a904383f206c907c7a1c8b47fa3bca.tar.xz
poezio-c9f4370598a904383f206c907c7a1c8b47fa3bca.zip
Remove a typo
Diffstat (limited to 'src')
-rw-r--r--src/gui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui.py b/src/gui.py
index 57cc7ab1..beca26db 100644
--- a/src/gui.py
+++ b/src/gui.py
@@ -178,7 +178,7 @@ class Gui(object):
if not contact:
return
contact.set_presence('unavailable')
- self.information('%s is not offline' % (contact.get_jid()), "Roster")
+ self.information('%s is offline' % (contact.get_jid()), "Roster")
def on_got_online(self, presence):
jid = presence['from']
@@ -189,7 +189,7 @@ class Gui(object):
priority = presence.getPriority()
contact.set_presence(status)
contact.set_priority(priority)
- self.information("%s is now online (%s)" % (contact.get_jid(), status), "Roster")
+ self.information("%s is online (%s)" % (contact.get_jid(), status), "Roster")
def on_connected(self, event):
"""