From 5e0cf053309b12831d3524862fec9fe21095091a Mon Sep 17 00:00:00 2001 From: Lorenz Diener Date: Thu, 15 Jun 2017 23:15:38 +0200 Subject: [PATCH] Typo fix --- mastodon/Mastodon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index e66711b..64f4775 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py @@ -472,9 +472,9 @@ class Mastodon: ### def domain_blocks(self, max_id = None, since_id = None, limit = None): """ - Fetch the authenticated user's blocked domain. + Fetch the authenticated user's blocked domains. - Returns a list of blocked domain URLs. + Returns a list of blocked domain URLs (as strings, without protocol specifier). """ params = self.__generate_params(locals()) return self.__api_request('GET', '/api/v1/domain_blocks', params)