update params istead of replace them
This commit is contained in:
parent
a5e3124f20
commit
ea548af65f
1 changed files with 1 additions and 1 deletions
|
|
@ -514,7 +514,7 @@ class Twython(EndpointsMixin, object):
|
|||
metadata = content.get(function.iter_metadata)
|
||||
if 'next_results' in metadata:
|
||||
next_results = urlsplit(metadata['next_results'])
|
||||
params = dict(parse_qsl(next_results.query))
|
||||
params.update(dict(parse_qsl(next_results.query)))
|
||||
else:
|
||||
# No more results
|
||||
raise StopIteration
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue