From 93e38ee7de841c5df50436ded9ba68fb89411dc7 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Tue, 10 Jul 2012 09:03:44 +0000 Subject: [PATCH] Introduce a line break to clean up the state display for tracked drafts a bit. - Legacy-Id: 4609 --- ietf/community/display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/community/display.py b/ietf/community/display.py index fe16eebf3..b6e9c4eb1 100644 --- a/ietf/community/display.py +++ b/ietf/community/display.py @@ -74,7 +74,7 @@ class StatusField(DisplayField): tags = '[%s]' % ",".join(tags) else: tags = '' - return '%s%s' % (state, tags) + return '%s
%s' % (state, tags) class WGField(DisplayField): codename = 'wg_rg'