Commit abfa9e92 authored by Francesco Poldi's avatar Francesco Poldi

Don't clean follow_object if store_object #439

Don't use config.Pandas = True and config.Store_object = True at the same run
parent 8ea85c35
......@@ -225,7 +225,7 @@ def Followers(config):
storage.panda._autoget("followers")
if config.User_full:
storage.panda._autoget("user")
if config.Pandas_clean:
if config.Pandas_clean and not config.Store_object:
#storage.panda.clean()
output.clean_follow_list()
......@@ -243,7 +243,7 @@ def Following(config):
storage.panda._autoget("following")
if config.User_full:
storage.panda._autoget("user")
if config.Pandas_clean:
if config.Pandas_clean and not config.Store_object:
#storage.panda.clean()
output.clean_follow_list()
......
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