missing imports
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 07 Jul 2009 11:36:51 +0200
changeset 2297 4cf57dd80650
parent 2296 f1b74a34da40
child 2298 8dffb4cce3b7
missing imports
schemas/Bookmark.py
schemas/base.py
--- a/schemas/Bookmark.py	Tue Jul 07 11:36:26 2009 +0200
+++ b/schemas/Bookmark.py	Tue Jul 07 11:36:51 2009 +0200
@@ -8,7 +8,8 @@
 __docformat__ = "restructuredtext en"
 _ = unicode
 
-from yams.buildobjs import EntityType, RelationType, String
+from yams.buildobjs import EntityType, RelationType, SubjectRelation, String
+from cubicweb.schema import RRQLExpression
 
 class Bookmark(EntityType):
     """bookmarks are used to have user's specific internal links"""
--- a/schemas/base.py	Tue Jul 07 11:36:26 2009 +0200
+++ b/schemas/base.py	Tue Jul 07 11:36:51 2009 +0200
@@ -9,8 +9,9 @@
 _ = unicode
 
 from yams.buildobjs import (EntityType, RelationType, SubjectRelation,
-                            String, Boolean, Datetime)
-from cubicweb.schema import RQLConstraint
+                            String, Boolean, Datetime, Password)
+from cubicweb.schema import (RQLConstraint, WorkflowableEntityType,
+                             ERQLExpression, RRQLExpression)
 from cubicweb.schemas import META_ETYPE_PERMS, META_RTYPE_PERMS
 
 class CWUser(WorkflowableEntityType):