diff options
-rw-r--r-- | mediagoblin/edit/views.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mediagoblin/edit/views.py b/mediagoblin/edit/views.py index 37fe3ba8..f96301fa 100644 --- a/mediagoblin/edit/views.py +++ b/mediagoblin/edit/views.py @@ -284,7 +284,9 @@ def edit_collection(request, collection): if existing_collection and existing_collection.id != collection.id: messages.add_message( - request, messages.ERROR, _('You already have a collection called "%s"!' % request.POST['title'])) + request, messages.ERROR, + _('You already have a collection called "%s"!') % \ + request.POST['title']) elif slug_used: form.slug.errors.append( _(u'A collection with that slug already exists for this user.')) |