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()