fixed minor issue in User.get_friends()

This commit is contained in:
Amr Hassan 2009-10-06 12:54:16 +00:00
parent 83bbe31b66
commit fa6093313a
2 changed files with 2 additions and 2 deletions

2
.build
View file

@ -1 +1 @@
12
13

View file

@ -2771,7 +2771,7 @@ class User(_BaseObject):
list = []
for node in _collect_nodes(limit, self, "user.getFriends", False):
list.append(User(_extract(node, "name"), self))
list.append(User(_extract(node, "name"), self.network))
return list