Skip to content

Commit

Permalink
Fix for fix
Browse files Browse the repository at this point in the history
  • Loading branch information
halcy committed Sep 8, 2017
1 parent 419bedc commit 7ded08f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mastodon/Mastodon.py
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,7 @@ def fetch_previous(self, next_page):
Returns the previous page or None if no further data is available.
"""
if isinstance(next_page, list) and len(previous_page) != 0:
if isinstance(next_page, list) and len(next_page) != 0:
if '_pagination_prev' in next_page[0]:
params = copy.deepcopy(next_page[0]['_pagination_prev'])
else:
Expand Down

0 comments on commit 7ded08f

Please sign in to comment.