Commit a8eafda6 authored by Francesco Poldi's avatar Francesco Poldi

Update #439

Clean follow_object in output.py, call the function in main if pandas_clean
parent f7029f78
......@@ -19,7 +19,9 @@ _follow_list = []
def clean_follow_list():
logme.debug(__name__+':clean_follow_list')
global _follow_list
global follow_object
_follow_list = []
follow_object = {}
def datecheck(datestamp, config):
logme.debug(__name__+':datecheck')
......
......@@ -225,8 +225,9 @@ def Followers(config):
storage.panda._autoget("followers")
if config.User_full:
storage.panda._autoget("user")
#if config.Pandas:
# storage.panda.clean()
if config.Pandas_clean:
#storage.panda.clean()
output.clean_follow_list()
def Following(config):
logme.debug(__name__+':Following')
......@@ -242,8 +243,9 @@ def Following(config):
storage.panda._autoget("following")
if config.User_full:
storage.panda._autoget("user")
#if config.Pandas:
# storage.panda.clean()
if config.Pandas_clean:
#storage.panda.clean()
output.clean_follow_list()
def Lookup(config):
logme.debug(__name__+':Lookup')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment