From ac9276d7da9b8d68fbae611d1fc8c62d5d721b5d Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Sun, 31 Aug 2008 14:51:41 -0300 Subject: [PATCH 1/1] Fix 80 chars column limit --- blitiri.cgi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/blitiri.cgi b/blitiri.cgi index fdefadb..21d13fa 100755 --- a/blitiri.cgi +++ b/blitiri.cgi @@ -1177,7 +1177,8 @@ def handle_cgi(): at = '' if line: at = ' at line %d' % line - form_data.body_error = 'error%s: %s' % (at, desc) + form_data.body_error = 'error%s: %s' \ + % (at, desc) valid = False if valid: c = article.add_comment(form_data.author, -- 2.43.0