storage webstatus: insert spaces when we're configured to expire multiple sharetypes

This commit is contained in:
Brian Warner 2009-03-20 15:44:50 -07:00
parent 3b65607926
commit 4f4d748fd9

@ -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):