From 12c975bab19244d7f0efbd9565276badd5b3dca3 Mon Sep 17 00:00:00 2001 From: Matt Date: Mon, 10 Aug 2020 22:27:13 -0500 Subject: [PATCH] Print the toot when it toots. --- bin/311_ebooks.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/311_ebooks.py b/bin/311_ebooks.py index ac584a2..23d2f29 100644 --- a/bin/311_ebooks.py +++ b/bin/311_ebooks.py @@ -56,4 +56,6 @@ mastodon.log_in( ) # Send toot -mastodon.toot(text_model.make_short_sentence(280)) +toot = text_model.make_short_sentence(280) +print(toot) +mastodon.toot(toot)