some nice mixins for tags, ratings, relations
[zzz-floof.git] / floof / controllers / tag.py
index 874e605..e5ce85b 100644 (file)
@@ -9,7 +9,7 @@ from pylons import url
 log = logging.getLogger(__name__)
 
 import elixir
-from floof.model.art import Art, Tag
+from floof.model import Art, Tag
 
 class TagController(BaseController):
 
@@ -19,7 +19,7 @@ class TagController(BaseController):
         elixir.session.delete(tag)
         elixir.session.commit()
         redirect(url('show_art', id=art_id))
-        
+
     # TODO: login required
     def create(self, art_id):
         c.art = h.get_object_or_404(Art, id=art_id)