From ec0b81bec0a3281b6f965472e0e8e652a787dc9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2EFernando=20S=C3=A1nchez?= Date: Fri, 15 Mar 2013 14:22:49 +0100 Subject: [PATCH] Added pending to shelf --- myego.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/myego.py b/myego.py index ebe1447..4b38833 100644 --- a/myego.py +++ b/myego.py @@ -15,10 +15,13 @@ for key in keys: if key not in sh: sh[key]={} +if 'pending' not in sh: + sh['pending']=set() + followers = sh['followers'] names = sh['names'] distance = sh['distance'] -pending = set() +pending = sh['pending'] userobject = sh['userobject'] t = Twitter(auth=OAuth(credentials.ACCESS_TOKEN,