Skip to content

Commit c7e7552

Browse files
committed
Fix bug in picking up blocking text (patch provided by olau@iola.dk).
- Legacy-Id: 4387
1 parent f43ad63 commit c7e7552

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/idrfc/views_ballot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def edit_positionREDESIGN(request, name, ballot_id):
274274
pos.comment = clean["comment"].rstrip()
275275
pos.comment_time = old_pos.comment_time if old_pos else None
276276
pos.discuss = clean["discuss"].rstrip()
277-
if pos.pos_id != "discuss":
277+
if not pos.pos.blocking:
278278
pos.discuss = ""
279279
pos.discuss_time = old_pos.discuss_time if old_pos else None
280280

0 commit comments

Comments
 (0)