fixed a silly mistake that i make way too often
This commit is contained in:
parent
69596e37fe
commit
952f75dac8
1 changed files with 1 additions and 1 deletions
2
post.py
2
post.py
|
@ -36,7 +36,7 @@ args = {
|
||||||
|
|
||||||
take = random.choice(takes['templates']).format(**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)
|
print(take)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue