From: Elrond Date: Sat, 27 Apr 2013 13:04:56 +0000 (+0200) Subject: Remove extra indentation left over from previous commit. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=adf53036a5c10d9f32e2505d23b72b3bd89728c9;p=mediagoblin.git Remove extra indentation left over from previous commit. This only removes an unneeded extra indentation, left over from the previous removal of code around. Extra commit so it is easy to check that it only changes indentation. --- diff --git a/mediagoblin/submit/views.py b/mediagoblin/submit/views.py index c9735fd3..e964ec12 100644 --- a/mediagoblin/submit/views.py +++ b/mediagoblin/submit/views.py @@ -123,30 +123,30 @@ def add_collection(request, media=None): submit_form = submit_forms.AddCollectionForm(request.form) if request.method == 'POST' and submit_form.validate(): - collection = request.db.Collection() - - collection.title = unicode(submit_form.title.data) - collection.description = unicode(submit_form.description.data) - collection.creator = request.user.id - collection.generate_slug() - - # Make sure this user isn't duplicating an existing collection - existing_collection = request.db.Collection.find_one({ - 'creator': request.user.id, - 'title':collection.title}) - - if existing_collection: - add_message(request, messages.ERROR, - _('You already have a collection called "%s"!') \ - % collection.title) - else: - collection.save() - - add_message(request, SUCCESS, - _('Collection "%s" added!') % collection.title) - - return redirect(request, "mediagoblin.user_pages.user_home", - user=request.user.username) + collection = request.db.Collection() + + collection.title = unicode(submit_form.title.data) + collection.description = unicode(submit_form.description.data) + collection.creator = request.user.id + collection.generate_slug() + + # Make sure this user isn't duplicating an existing collection + existing_collection = request.db.Collection.find_one({ + 'creator': request.user.id, + 'title':collection.title}) + + if existing_collection: + add_message(request, messages.ERROR, + _('You already have a collection called "%s"!') \ + % collection.title) + else: + collection.save() + + add_message(request, SUCCESS, + _('Collection "%s" added!') % collection.title) + + return redirect(request, "mediagoblin.user_pages.user_home", + user=request.user.username) return render_to_response( request,