From 779bd79e8b1364bf244904c4b857443d3341fb93 Mon Sep 17 00:00:00 2001 From: Adam K Sumner Date: Mon, 30 Jan 2017 20:08:47 -0500 Subject: [PATCH] fix formatting --- src/pretix/control/forms/item.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pretix/control/forms/item.py b/src/pretix/control/forms/item.py index d2b4dc187f..6d0deeafb2 100644 --- a/src/pretix/control/forms/item.py +++ b/src/pretix/control/forms/item.py @@ -104,10 +104,10 @@ class ItemCreateForm(I18nModelForm): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.fields['has_variations'] = forms.BooleanField(label=_('The product should exist in multiple variations'), - help_text=_( - 'Select this option e.g. for t-shirts that come in multiple sizes. ' - 'You can select the variations in the next step.'), - required=False) + help_text=_('Select this option e.g. for t-shirts that come ' + 'in multiple sizes. You can select the variations' + ' in the next step.'), + required=False) self.fields['copy_from'] = forms.ModelChoiceField( label=_("Copy product information"), queryset=self.event.items.all(),