From 99d7267688e98a72ab9869e7cfe86ee703bf0a6e Mon Sep 17 00:00:00 2001 From: Klaus-Uwe Mitterer Date: Sun, 17 May 2015 21:56:45 +0200 Subject: [PATCH] Allow followertxt to be (theoretically) executed using an app registered by a different user --- followertxt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/followertxt.py b/followertxt.py index 3e5fb96..215c878 100755 --- a/followertxt.py +++ b/followertxt.py @@ -9,7 +9,7 @@ auth = tweepy.OAuthHandler(config.cke, config.cse) auth.set_access_token(config.ato, config.ase) api = tweepy.API(auth) -follower_ids = api.followers_ids() +follower_ids = api.followers_ids(screen_name=config.name) with open(outfile, 'a') as f: for page in tools.paginate(follower_ids, 100):