From fa6093313aa7d15d3a9dc8d5b7e3166a115ece76 Mon Sep 17 00:00:00 2001 From: Amr Hassan Date: Tue, 6 Oct 2009 12:54:16 +0000 Subject: [PATCH] fixed minor issue in User.get_friends() --- .build | 2 +- pylast.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.build b/.build index 3cacc0b..ca7bf83 100644 --- a/.build +++ b/.build @@ -1 +1 @@ -12 \ No newline at end of file +13 \ No newline at end of file diff --git a/pylast.py b/pylast.py index 3154365..5720595 100644 --- a/pylast.py +++ b/pylast.py @@ -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