Remove extra indentation left over from previous commit.
authorElrond <elrond+mediagoblin.org@samba-tng.org>
Sat, 27 Apr 2013 13:04:56 +0000 (15:04 +0200)
committerElrond <elrond+mediagoblin.org@samba-tng.org>
Sat, 27 Apr 2013 13:08:42 +0000 (15:08 +0200)
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.

mediagoblin/submit/views.py

index c9735fd366007ecd8f109f5fff2cc4500dac0125..e964ec126a2ff5630516af39ae2e4340122950e3 100644 (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.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,