diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-10-05 00:37:52 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-10-05 00:37:52 +0000 |
commit | c9f4370598a904383f206c907c7a1c8b47fa3bca (patch) | |
tree | 91f05bfdb14cbca32e401ff5bf3815d9ec267bb6 /src | |
parent | 8caf7651a90861fadf9c05585f177c4beac3d7ac (diff) | |
download | poezio-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.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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): """ |