F [server test] avoid warning by adding __init__.py file to directory
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Sat, 01 Aug 2009 16:14:55 +0200
changeset 2626 e297294dff12
parent 2625 d6012db7b93e
child 2627 d710278e0c1c
F [server test] avoid warning by adding __init__.py file to directory
server/test/data/migratedapp/__init__.py
server/test/data/migratedapp/schema.py
--- a/server/test/data/migratedapp/schema.py	Sat Aug 01 16:13:40 2009 +0200
+++ b/server/test/data/migratedapp/schema.py	Sat Aug 01 16:14:55 2009 +0200
@@ -61,6 +61,7 @@
     inlined = True
     cardinality = '?*'
 
+
 class Folder2(EntityType):
     """folders are used to classify entities. They may be defined as a tree.
     When you include the Folder entity, all application specific entities
@@ -73,12 +74,6 @@
     filed_under2 = ObjectRelation('*')
 
 
-class filed_under2(RelationType):
-    """indicates that an entity is classified under a folder"""
-    # is_about has been renamed into filed_under
-    #//* is_about Folder
-    #* filed_under Folder
-
 class Personne(EntityType):
     nom    = String(fulltextindexed=True, required=True, maxsize=64)
     prenom = String(fulltextindexed=True, maxsize=64)