mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-18 15:33:02 +00:00
FIX a bug
it's an obvious bug.
This commit is contained in:
@@ -26,7 +26,7 @@ class ProxyAPIHandler(APIHandler):
|
|||||||
else:
|
else:
|
||||||
routes = {}
|
routes = {}
|
||||||
end = offset + limit
|
end = offset + limit
|
||||||
for i, key in sorted(all_routes.keys()):
|
for i, key in enumerate(sorted(all_routes.keys())):
|
||||||
if i < offset:
|
if i < offset:
|
||||||
continue
|
continue
|
||||||
elif i >= end:
|
elif i >= end:
|
||||||
|
Reference in New Issue
Block a user