Skip to content

Commit ccd57c4

Browse files
committed
Remove console log
1 parent cfe7294 commit ccd57c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intercom/collection_proxy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def extract_next_link(self, url, response):
104104
paging_info = response["pages"]
105105
if 'next' not in paging_info or paging_info['next'] == None:
106106
return None
107-
elif paging_info["next"] and (isinstance(paging_info['next'], unicode) or isinstance(paging_info['next'], str)):
107+
elif paging_info["next"] and (isinstance(paging_info['next'], six.text_type) or isinstance(paging_info['next'], str)):
108108
next_parsed = six.moves.urllib.parse.urlparse(paging_info["next"])
109109
return '{}?{}'.format(next_parsed.path, next_parsed.query)
110110
else:

0 commit comments

Comments
 (0)