From e18beb8c3fcc55772fc647e56995ae2eaeecf1fb Mon Sep 17 00:00:00 2001 From: spla Date: Wed, 19 May 2021 15:48:19 +0200 Subject: [PATCH] First release --- welcome.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/welcome.py b/welcome.py index b5d8954..f0660a0 100644 --- a/welcome.py +++ b/welcome.py @@ -374,12 +374,11 @@ if __name__ == '__main__': print("Tooting...") print(toot_text) if len(toot_text) < 500: - #mastodon.status_post(toot_text, in_reply_to_id=None, ) - print("blah") + mastodon.status_post(toot_text, in_reply_to_id=None, ) else: toot_text1, toot_text2 = toot_text[:int(len(toot_text)/2)], toot_text[int(len(toot_text)/2):] toot_id = mastodon.status_post(toot_text1, in_reply_to_id=None,) - #mastodon.status_post(toot_text2, in_reply_to_id=toot_id,) + mastodon.status_post(toot_text2, in_reply_to_id=toot_id,) print(toot_text1) print(toot_text2)