From 3f1e8682c9e18aa962a83bf04e8454339e52106d Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Sat, 15 Apr 2017 12:45:16 +0200 Subject: [PATCH] More descriptive application name --- toot/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toot/__init__.py b/toot/__init__.py index 759fd48..7a81793 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -57,7 +57,7 @@ def create_app(base_url): url = base_url + '/api/v1/apps' response = requests.post(url, { - 'client_name': 'toot', + 'client_name': 'toot - Mastodon CLI Interface', 'redirect_uris': 'urn:ietf:wg:oauth:2.0:oob', 'scopes': 'read write', 'website': 'https://github.com/ihabunek/toot',