Skip to content

Commit

Permalink
Don't manually linewrap when looking at feedback - let the pasted sty…
Browse files Browse the repository at this point in the history
…ling do that. Fixes #2761. Commit ready for merge.

 - Legacy-Id: 16646
  • Loading branch information
rjsparks committed Aug 12, 2019
1 parent 19a9ce9 commit 3383884
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ietf/nomcom/templatetags/nomcom_tags.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Copyright The IETF Trust 2013-2019, All Rights Reserved
import os
import tempfile
import re
Expand All @@ -9,7 +10,6 @@

import debug # pyflakes:ignore

from ietf.utils.text import wordwrap
from ietf.nomcom.utils import get_nomcom_by_year, retrieve_nomcom_private_key
from ietf.person.models import Person
from ietf.utils.log import log
Expand Down Expand Up @@ -76,4 +76,4 @@ def decrypt(string, request, year, plain=False):

if not plain:
return force_escape(linebreaksbr(out))
return mark_safe(wordwrap(force_escape(out)))
return mark_safe(force_escape(out))

0 comments on commit 3383884

Please sign in to comment.