From c7e75522ad0a1bb4e03e54aed977c841a8b5834e Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz <henrik@levkowetz.com> Date: Fri, 4 May 2012 12:57:06 +0000 Subject: [PATCH] Fix bug in picking up blocking text (patch provided by olau@iola.dk). - Legacy-Id: 4387 --- ietf/idrfc/views_ballot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/idrfc/views_ballot.py b/ietf/idrfc/views_ballot.py index 28b5ef71e..9091efed3 100644 --- a/ietf/idrfc/views_ballot.py +++ b/ietf/idrfc/views_ballot.py @@ -274,7 +274,7 @@ def edit_positionREDESIGN(request, name, ballot_id): pos.comment = clean["comment"].rstrip() pos.comment_time = old_pos.comment_time if old_pos else None pos.discuss = clean["discuss"].rstrip() - if pos.pos_id != "discuss": + if not pos.pos.blocking: pos.discuss = "" pos.discuss_time = old_pos.discuss_time if old_pos else None