diff --git a/src/allmydata/web/checker_results.py b/src/allmydata/web/checker_results.py index 4c7030c45..477a01c58 100644 --- a/src/allmydata/web/checker_results.py +++ b/src/allmydata/web/checker_results.py @@ -365,7 +365,11 @@ class DeepCheckResults(rend.Page, ResultsBase, ReloadMixin): def render_object(self, ctx, data): path, r = data - ctx.fillSlots("path", "/".join(self._html(path))) + if path: + pathstring = "/".join(self._html(path)) + else: + pathstring = "" + ctx.fillSlots("path", pathstring) ctx.fillSlots("healthy", str(r.is_healthy())) storage_index = r.get_storage_index() ctx.fillSlots("storage_index", self._render_si_link(ctx, storage_index))