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