From 908f2eef84a44c0960b0c158c12e28f30e00ea78 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 8 Oct 2014 10:24:04 -0400 Subject: [PATCH] Fix quotation style --- mayan/apps/common/widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/common/widgets.py b/mayan/apps/common/widgets.py index cafcb3e890..e351efec40 100644 --- a/mayan/apps/common/widgets.py +++ b/mayan/apps/common/widgets.py @@ -55,7 +55,7 @@ class DetailSelectMultiple(forms.widgets.SelectMultiple): else: output += u'
  • %s
  • ' % string else: - output += u'
  • %s
  • ' % _(u"None") + output += u'
  • %s
  • ' % _(u'None') return mark_safe(output + u'\n')