From 7ebf1220a30244c595708f8a4a19c227562f7c0e Mon Sep 17 00:00:00 2001 From: Jan-Piet Mens Date: Mon, 29 Jun 2020 12:39:52 +0200 Subject: [PATCH] remove debugging. --- lib/ephemetoot.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/ephemetoot.py b/lib/ephemetoot.py index 9706626..d0a2055 100644 --- a/lib/ephemetoot.py +++ b/lib/ephemetoot.py @@ -85,7 +85,6 @@ def checkToots(config, options, retry_count=0): def checkBatch(timeline, deleted_count=0): for toot in timeline: if 'id' in toot and 'archive' in config: - print(toot) filename = os.path.join(config['archive'], str(toot['id']) + '.json') with open(filename, "w") as f: f.write(json.dumps(toot, indent=4, default=jsondefault))