From b94ead704150711f35b6c1c476e006495ac312fa Mon Sep 17 00:00:00 2001 From: b3yond Date: Mon, 24 Sep 2018 19:58:17 +0200 Subject: [PATCH] weird log logic --- backend.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend.py b/backend.py index 5e72c46..b9c60dc 100755 --- a/backend.py +++ b/backend.py @@ -35,6 +35,7 @@ if __name__ == '__main__': for status in reports: if not user.is_appropriate(status): logger.info("Inaproppriate message: %d %s %s" % (user.uid, status.author, status.text)) + continue for bot2 in bots: bot2.post(user, status) logger.info("Resent: %d %s %s" % (user.uid, status.author, status.text))