From e7a2aed6a0f510e113293c3eac35afd4fd5edf50 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 25 Jan 2012 02:17:04 -0400 Subject: [PATCH] Silence HTML validator --- apps/smart_settings/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/smart_settings/views.py b/apps/smart_settings/views.py index 2db39a143e..a08872d053 100644 --- a/apps/smart_settings/views.py +++ b/apps/smart_settings/views.py @@ -30,7 +30,7 @@ def setting_list(request): 'hide_link': True, 'hide_object': True, 'extra_columns': [ - {'name': _(u'name'), 'attribute': encapsulate(lambda x: mark_safe(u'%s
%s' % (x.get('global_name'), x.get('description'))))}, + {'name': _(u'name'), 'attribute': encapsulate(lambda x: mark_safe(u'%s
%s' % (x.get('global_name'), x.get('description'))))}, {'name': _(u'default'), 'attribute': encapsulate(lambda x: return_type(x['default']))}, {'name': _(u'value'), 'attribute': encapsulate(lambda x: mark_safe(u'
%s %s
' % ( return_type(getattr(x['module'], x['name'])),