Skip to content

Commit 7786296

Browse files
authored
Merge pull request #16 from BeautyYuYanli/master
fix an error
2 parents 0a98d58 + dbacbcc commit 7786296

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## v0.4.1
4+
5+
Changed
6+
7+
- fix an error in `client.py`
38

49
## v0.4.0
510

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66

7-
VERSION = '0.4.4'
7+
VERSION = '0.4.5'
88
REQS = [
99
'lxml',
1010
'requests',

0 commit comments

Comments
 (0)