Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/model/Friends.py
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-07-09 19:34:28 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-07-09 19:34:28 (GMT)
commitf0c8fe19feda8b06747e3b9aa11c4ac84aead723 (patch)
treede489b7e98a1730a0ba59ae72fd71c66b7635ed7 /shell/model/Friends.py
parentecca1dca0011df7d40f424e89a75f0cc9193b874 (diff)
#1953: Retrieve friends' nicks from the profile.
Diffstat (limited to 'shell/model/Friends.py')
-rw-r--r--shell/model/Friends.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/model/Friends.py b/shell/model/Friends.py
index 23ce94a..2b7d6bf 100644
--- a/shell/model/Friends.py
+++ b/shell/model/Friends.py
@@ -69,7 +69,7 @@ class Friends(gobject.GObject):
# HACK: don't screw up on old friends files
if len(key) < 20:
continue
- buddy = BuddyModel(key=key)
+ buddy = BuddyModel(key=key, nick=cp.get(key, 'nick'))
self.add_friend(buddy)
except Exception, exc:
logging.error("Error parsing friends file: %s" % exc)