Print the toot when it toots.

This commit is contained in:
Matt
2020-08-10 22:27:13 -05:00
parent 817073812c
commit 12c975bab1

View File

@ -56,4 +56,6 @@ mastodon.log_in(
) )
# Send toot # Send toot
mastodon.toot(text_model.make_short_sentence(280)) toot = text_model.make_short_sentence(280)
print(toot)
mastodon.toot(toot)