trivial: join splitted strings

This commit is contained in:
Frédéric Péters 2022-06-01 19:00:46 +02:00
parent fa99abc37f
commit fdad44bc89
2 changed files with 2 additions and 2 deletions

View File

@ -864,7 +864,7 @@ class CancelItemView(DetailView):
def post(self, request, *args, **kwargs):
if not request.user.is_authenticated:
messages.error(request, _('An error occured when removing the item. ' '(no authenticated user)'))
messages.error(request, _('An error occured when removing the item. (no authenticated user)'))
return HttpResponseRedirect(get_basket_url())
if not self.get_object().user_cancellable:
messages.error(request, _('This item cannot be removed.'))

View File

@ -2247,7 +2247,7 @@ class JsonCell(JsonCellBase):
_('Variable names'),
max_length=200,
blank=True,
help_text=_('Comma separated list of query-string variables ' 'to be copied in template context'),
help_text=_('Comma separated list of query-string variables to be copied in template context'),
)
timeout = models.PositiveIntegerField(
_('Request timeout'), default=0, help_text=_('In seconds. Use 0 for default system timeout')