Fixed setup.py.
[zzz-floof.git] / floof / controllers / tag.py
index c00eaf6..874e605 100644 (file)
@@ -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))