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.
This commit is contained in:
Elrond 2013-04-27 15:04:56 +02:00
parent 2041ceae1f
commit adf53036a5

View File

@ -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 = 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()
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})
# 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()
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)
add_message(request, SUCCESS,
_('Collection "%s" added!') % collection.title)
return redirect(request, "mediagoblin.user_pages.user_home",
user=request.user.username)
return redirect(request, "mediagoblin.user_pages.user_home",
user=request.user.username)
return render_to_response(
request,