diff options
author | Lorenz Diener <[email protected]> | 2017-09-08 16:41:39 +0200 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2017-09-08 16:41:39 +0200 |
commit | 7ded08fd84a8c136ee8da65f8c6238910aca71d9 (patch) | |
tree | 0ce37d96e31dbd4a9cb70ff4514acb122f9c0edf /mastodon | |
parent | 419bedc55a0d573ab5dbaba3fb48a17c4d21fb1b (diff) | |
download | mastodon.py-7ded08fd84a8c136ee8da65f8c6238910aca71d9.tar.gz |
Fix for fix
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 4774761..ed8901c 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -853,7 +853,7 @@ class Mastodon: | |||
853 | 853 | ||
854 | Returns the previous page or None if no further data is available. | 854 | Returns the previous page or None if no further data is available. |
855 | """ | 855 | """ |
856 | if isinstance(next_page, list) and len(previous_page) != 0: | 856 | if isinstance(next_page, list) and len(next_page) != 0: |
857 | if '_pagination_prev' in next_page[0]: | 857 | if '_pagination_prev' in next_page[0]: |
858 | params = copy.deepcopy(next_page[0]['_pagination_prev']) | 858 | params = copy.deepcopy(next_page[0]['_pagination_prev']) |
859 | else: | 859 | else: |