aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mastodon/Mastodon.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py
index 174e798..4373acd 100644
--- a/mastodon/Mastodon.py
+++ b/mastodon/Mastodon.py
@@ -2579,7 +2579,7 @@ class Mastodon:
2579 """ 2579 """
2580 Converts json string numerals to native python bignums. 2580 Converts json string numerals to native python bignums.
2581 """ 2581 """
2582 for key in ('id', 'week', 'in_reply_to_id', 'in_reply_to_account_id', 'logins', 'registrations', 'statuses'): 2582 for key in ('id', 'week', 'in_reply_to_id', 'in_reply_to_account_id', 'logins', 'registrations', 'statuses', 'day'):
2583 if (key in json_object and isinstance(json_object[key], six.text_type)): 2583 if (key in json_object and isinstance(json_object[key], six.text_type)):
2584 try: 2584 try:
2585 json_object[key] = int(json_object[key]) 2585 json_object[key] = int(json_object[key])
Powered by cgit v1.2.3 (git 2.41.0)