From 435294e0045154d61f52259299823f40333bf52f Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Mon, 13 Dec 2010 14:28:23 +0900 Subject: [PATCH] Fix username parameter bug --- twython/twython.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twython/twython.py b/twython/twython.py index 53ff24a..fbe697b 100644 --- a/twython/twython.py +++ b/twython/twython.py @@ -318,7 +318,7 @@ class Twython(object): except HTTPError, e: raise TwythonError("isListMember() failed with a %d error code." % e.code, e.code) - def isListSubscriber(self, list_id, id, version = 1): + def isListSubscriber(self, username, list_id, id, version = 1): """ isListSubscriber(self, list_id, id, version) Check if a specified user (id) is a subscriber of the list in question (list_id).