mirror of
https://github.com/kennethreitz-archive/python-convore.git
synced 2026-06-05 23:40:18 +00:00
moved next_cursor where it belongs.
This commit is contained in:
+1
-1
@@ -53,7 +53,6 @@ class Convore(object):
|
||||
|
||||
def fetch_live_data(self, cursor=None):
|
||||
params= {}
|
||||
next_cursor = None
|
||||
|
||||
if cursor <> None:
|
||||
params['cursor'] = cursor
|
||||
@@ -64,6 +63,7 @@ class Convore(object):
|
||||
def live(self, cursor=None):
|
||||
|
||||
try:
|
||||
next_cursor = None
|
||||
live_messages = list()
|
||||
messages = self.fetch_live_data(cursor)
|
||||
for data in messages:
|
||||
|
||||
Reference in New Issue
Block a user