Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit a5237c8

Browse files
committed
Fix bug in getfollowers api call
1 parent e9cec15 commit a5237c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/restapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ def parse_followers(followers):
295295
request.finish()
296296
start = 0
297297
if "start" in request.args:
298-
start = int(request.args["start"])
298+
start = int(request.args["start"][0])
299299
if "guid" in request.args:
300300
def get_node(node):
301301
if node is not None:

0 commit comments

Comments
 (0)