Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/model
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-09-26 17:49:41 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-09-26 17:49:41 (GMT)
commit92e37fd9048ae5a89a65eec1915e588108125d3c (patch)
treee74dd16a6f70bd9444ed03111f3cc58cacf7f592 /shell/model
parentc8fd8ef3d90da0be5c4307ee84771ed28ad8cb1f (diff)
Fix add and remove friends
Diffstat (limited to 'shell/model')
-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 5048688..85bdff0 100644
--- a/shell/model/Friends.py
+++ b/shell/model/Friends.py
@@ -32,7 +32,7 @@ class Friends(gobject.GObject):
def make_friend(self, buddy):
if not self.has_buddy(buddy):
- self.add_friend(BuddyModel(buddy))
+ self.add_friend(BuddyModel(buddy=buddy))
self.save()
def remove(self, buddy_info):