From 9c62a27dbd260abdb382e3e7ff030a23562d2f6c Mon Sep 17 00:00:00 2001 From: sose Date: Sun, 13 Sep 2020 18:54:07 +0000 Subject: [PATCH] added a space --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 3635b38..3595c37 100755 --- a/bot.py +++ b/bot.py @@ -46,7 +46,7 @@ while True: antonym=obj['edges'][i]['end']['label'] if obj['edges'][i]['start']['language'] == 'en' and obj['edges'][i]['end']['language'] == 'en': if onym+'\n' not in used_words_list and antonym+'\n' not in used_words_list: - mastodon.toot("pokemon" + onym + " and " + antonym) + mastodon.toot("pokemon " + onym + " and " + antonym) print("Tooted pokemon " + onym + " and " + antonym) used_words.write(onym + '\n') used_words.close()