diff --git a/contrib/frontends/django/nntpchan/nntpchan/frontend/templatetags/chanup.py b/contrib/frontends/django/nntpchan/nntpchan/frontend/templatetags/chanup.py index c7a3bcc..01a51f8 100644 --- a/contrib/frontends/django/nntpchan/nntpchan/frontend/templatetags/chanup.py +++ b/contrib/frontends/django/nntpchan/nntpchan/frontend/templatetags/chanup.py @@ -23,7 +23,7 @@ def greentext(text, esc): f = False for line in text.split('\n'): line = line.strip() - if len(line) < 1: + if len(line) < 2: continue if line[0] == '>' and line[1] != '>': return_text += '%s ' % esc ( line ) + '\n'