From 952f75dac86896596e193c0e26339f6dec16e8f7 Mon Sep 17 00:00:00 2001 From: Lynne Date: Sat, 21 Sep 2019 23:38:18 +1000 Subject: [PATCH] fixed a silly mistake that i make way too often --- post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post.py b/post.py index e2dd405..61148c0 100644 --- a/post.py +++ b/post.py @@ -36,7 +36,7 @@ args = { take = random.choice(takes['templates']).format(**args) -cw = random.choice("[BOT POST] " + takes['content warnings']).format(**args) +cw = "[BOT POST] " + random.choice(takes['content warnings']).format(**args) print(take)