diff options
author | ZEN <[email protected]> | 2021-02-14 08:38:34 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-02-14 08:38:34 +0200 |
commit | 0f92f778dc2c4ce2b1737383fc574d0de032659a (patch) | |
tree | 2f4155cd9b7ee61ce899deaeae970b24a261898d /mastodon | |
parent | e9d2c3d53f7b1d371e5dc5bf47e5fe335b698c85 (diff) | |
download | mastodon.py-0f92f778dc2c4ce2b1737383fc574d0de032659a.tar.gz |
__json_truefalse_parse: fix a typo
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/Mastodon.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 98ac72a..4c7cb62 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -3230,7 +3230,7 @@ class Mastodon: | |||
3230 | if (key in json_object and isinstance(json_object[key], six.text_type)): | 3230 | if (key in json_object and isinstance(json_object[key], six.text_type)): |
3231 | if json_object[key].lower() == 'true': | 3231 | if json_object[key].lower() == 'true': |
3232 | json_object[key] = True | 3232 | json_object[key] = True |
3233 | if json_object[key].lower() == 'False': | 3233 | if json_object[key].lower() == 'false': |
3234 | json_object[key] = False | 3234 | json_object[key] = False |
3235 | return json_object | 3235 | return json_object |
3236 | 3236 | ||