From 01dccef7dbd402c2c922f84b4bd7cc29b0f00e0a Mon Sep 17 00:00:00 2001 From: Alok Saldanha Date: Sat, 30 Jan 2021 15:38:37 -0500 Subject: [PATCH] added back trailing slash to url_for change --- cellxgene_gateway/filecrawl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cellxgene_gateway/filecrawl.py b/cellxgene_gateway/filecrawl.py index b83d70d..f0ec1f4 100644 --- a/cellxgene_gateway/filecrawl.py +++ b/cellxgene_gateway/filecrawl.py @@ -92,7 +92,7 @@ def render_entries(entries): def get_url(entry): - return url_for("do_view", path=entry["path"].lstrip("/")) + return url_for("do_view", path=entry["path"].lstrip("/")) +"/"" def get_class(entry):