X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/69d5189cc4fb2ca63418a0741bf744cf5fee8bc9..366dedf71b3cdd775251c7cea4b1519b44b37164:/floof/controllers/tag.py diff --git a/floof/controllers/tag.py b/floof/controllers/tag.py index c00eaf6..874e605 100644 --- a/floof/controllers/tag.py +++ b/floof/controllers/tag.py @@ -23,7 +23,7 @@ class TagController(BaseController): # TODO: login required def create(self, art_id): c.art = h.get_object_or_404(Art, id=art_id) - c.art.add_tags(request.params["tags"], c.user) + c.art.add_tags(request.params.get("tags",""), c.user) elixir.session.commit() redirect(url('show_art', id=c.art.id))