From 804bc230b0c2a2b4bff2af394f8e5833c05bc34a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 21 Feb 2011 02:27:04 -0500 Subject: [PATCH] use new api for group pulls --- convore/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convore/api.py b/convore/api.py index 005c1dc..42d71f5 100644 --- a/convore/api.py +++ b/convore/api.py @@ -107,7 +107,7 @@ class Groups(SyncedList): self.data = [] - r = requests.get(API_URL + 'groups.json') + r = get('groups') for _group in json.loads(r.content)['groups']: group = models.Group()