From 4f4d748fd91469ef6813de2141c68f3c1863aec0 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Fri, 20 Mar 2009 15:44:50 -0700 Subject: [PATCH] storage webstatus: insert spaces when we're configured to expire multiple sharetypes --- src/allmydata/web/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/web/storage.py b/src/allmydata/web/storage.py index 6fdaf241..ca1775fa 100644 --- a/src/allmydata/web/storage.py +++ b/src/allmydata/web/storage.py @@ -144,7 +144,7 @@ class StorageStatus(rend.Page): "will be considered expired." % date] if len(lc.mode) > 2: ctx.tag[" The following sharetypes will be expired: ", - sorted(lc.sharetypes_to_expire), "."] + " ".join(sorted(lc.sharetypes_to_expire)), "."] return ctx.tag def format_recovered(self, sr, a): -- 2.45.2