From 69596e37fe8c29139f8840f1341f27b259dbba0e Mon Sep 17 00:00:00 2001 From: Lynne Date: Sat, 21 Sep 2019 22:43:02 +1000 Subject: [PATCH] warn that posts are made by a bot --- post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post.py b/post.py index 1c596b5..e2dd405 100644 --- a/post.py +++ b/post.py @@ -36,7 +36,7 @@ args = { take = random.choice(takes['templates']).format(**args) -cw = random.choice(takes['content warnings']).format(**args) +cw = random.choice("[BOT POST] " + takes['content warnings']).format(**args) print(take)