From 3e297efad8e6dbb7622cedd68a2457f00dd09080 Mon Sep 17 00:00:00 2001 From: eliott Date: Sat, 29 Dec 2007 16:42:55 -0800 Subject: Massive retab fest. Also added vim command comment to the end of files. --- public/templatetags/validation.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'public/templatetags/validation.py') diff --git a/public/templatetags/validation.py b/public/templatetags/validation.py index 40c48da..38a4053 100644 --- a/public/templatetags/validation.py +++ b/public/templatetags/validation.py @@ -4,9 +4,12 @@ register = template.Library() @register.inclusion_tag('errors.html') def print_errors(errors): - errs = [] - for e,msg in errors.iteritems(): - errmsg = str(msg[0]) - # hack -- I'm a python idiot - errs.append( (e, errmsg[2:-2]) ) - return {'errors': errs} + errs = [] + for e,msg in errors.iteritems(): + errmsg = str(msg[0]) + # hack -- I'm a python idiot + errs.append( (e, errmsg[2:-2]) ) + return {'errors': errs} + +# vim: set ts=4 sw=4 et: + -- cgit v1.2.3-24-g4f1b