summaryrefslogtreecommitdiff
path: root/ishtar_common/forms_common.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/forms_common.py')
-rw-r--r--ishtar_common/forms_common.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ishtar_common/forms_common.py b/ishtar_common/forms_common.py
index 96a473c28..7224620e0 100644
--- a/ishtar_common/forms_common.py
+++ b/ishtar_common/forms_common.py
@@ -1872,9 +1872,9 @@ class QADocumentPackagingForm(IshtarForm):
container_to_change = forms.ChoiceField(
label=_("Change "), required=True,
choices=(
- ('current-and-reference', _(u"current and reference containers")),
- ('reference', _(u"the reference container")),
- ('current', _(u"the current container")),
+ ('current-and-reference', _("current and reference containers")),
+ ('reference', _("the reference container")),
+ ('current', _("the current container")),
)
)