From 69afd292c2e6c1c453d9da9e9de9c2d5b7bd25ba Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Wed, 15 Jul 2020 13:43:50 -0400 Subject: [PATCH] Use a different format for path Seems that _join_pathstring() is the wrong thing to use here. --- src/allmydata/web/check_results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/web/check_results.py b/src/allmydata/web/check_results.py index f459b1f50..d6c8fb508 100644 --- a/src/allmydata/web/check_results.py +++ b/src/allmydata/web/check_results.py @@ -573,7 +573,7 @@ class DeepCheckResultsRendererElement(Element, ResultsBase, ReloadMixin): result = results.get(path) storage_index = result.get_storage_index() object = { - "path": self._join_pathstring(path), + "path": self._html(path), "healthy": str(result.is_healthy()), "recoverable": str(result.is_recoverable()), "storage_index": self._render_si_link(req, storage_index),