Skip to content
This repository was archived by the owner on Jan 13, 2022. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion instagram/bind.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,11 @@ def _build_path(self):
del self.parameters[name]

self.path = self.path.replace(variable, value)
self.path = self.path + '.%s' % self.api.format

if self.api.format:
self.path = self.path + '.%s' % self.api.format
else:
self.path = self.path

def _build_pagination_info(self, content_obj):
"""Extract pagination information in the desired format."""
Expand Down