Skip to content

Commit 8a72f06

Browse files
author
beautyyuyanli
committed
fix an error
1 parent 0a98d58 commit 8a72f06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inoreader/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def __get_stream_contents(self, stream_id, continuation=''):
158158
'output': 'json'
159159
}
160160
response = self.parse_response(self.session.post(url, params=params, proxies=self.proxies))
161-
if 'continuation' in response():
161+
if 'continuation' in response:
162162
return response['items'], response['continuation']
163163
else:
164164
return response['items'], None

0 commit comments

Comments
 (0)