From: Christopher Allan Webber Date: Sat, 4 Jun 2011 12:41:31 +0000 (-0500) Subject: I shouldn't have removed the .save() entirely :) X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=747623cc04d58d17595cab318ef4a190de60088d;p=mediagoblin.git I shouldn't have removed the .save() entirely :) --- diff --git a/mediagoblin/edit/views.py b/mediagoblin/edit/views.py index 5cfb2297..c3aedac9 100644 --- a/mediagoblin/edit/views.py +++ b/mediagoblin/edit/views.py @@ -48,6 +48,7 @@ def edit_media(request, media): media['title'] = request.POST['title'] media['description'] = request.POST['description'] media['slug'] = request.POST['slug'] + media.save() # redirect return exc.HTTPFound(