aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mastodon')
-rw-r--r--mastodon/Mastodon.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py
index e87599b..8b0afb3 100644
--- a/mastodon/Mastodon.py
+++ b/mastodon/Mastodon.py
@@ -3240,7 +3240,7 @@ class Mastodon:
3240 if (key in json_object and isinstance(json_object[key], six.text_type)): 3240 if (key in json_object and isinstance(json_object[key], six.text_type)):
3241 if json_object[key].lower() == 'true': 3241 if json_object[key].lower() == 'true':
3242 json_object[key] = True 3242 json_object[key] = True
3243 if json_object[key].lower() == 'False': 3243 if json_object[key].lower() == 'false':
3244 json_object[key] = False 3244 json_object[key] = False
3245 return json_object 3245 return json_object
3246 3246
Powered by cgit v1.2.3 (git 2.41.0)