From 810fc1b310a3420ff6a4b3ef15aec9e13c4a0aa3 Mon Sep 17 00:00:00 2001 From: mystie Date: Fri, 28 Mar 2025 19:45:56 +0300 Subject: [PATCH] fix a typo --- masto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masto.py b/masto.py index f2571df..3652387 100644 --- a/masto.py +++ b/masto.py @@ -34,7 +34,7 @@ if not cfg['crosspost']['fediverse']['token']: api_base_url = 'https://' + cfg['crosspost']['fediverse']['instance'] ) - print("Open this URL and authenticate to give {} access to your bot's account: {}".format(appName, client.auth_request_url(scopes=scopes))) + print("Open this URL and authenticate to give {} access to your account: {}".format(appName, client.auth_request_url(scopes=scopes))) cfg['crosspost']['fediverse']['token'] = client.log_in(code=input("Secret: "), scopes = scopes)