fix broken imports for tags management on site & person
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Tue, 28 Aug 2012 15:02:25 +0000 (17:02 +0200)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Tue, 28 Aug 2012 15:02:25 +0000 (17:02 +0200)
PLC/Methods/DeletePersonTag.py
PLC/Methods/DeleteSiteTag.py
PLC/Methods/UpdatePersonTag.py
PLC/Methods/UpdateSiteTag.py

index d8a9c8b..6b748d3 100644 (file)
@@ -6,8 +6,9 @@ from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
 from PLC.Auth import Auth
 
-from PLC.PersonTags import PersonTag, PersonTags
 from PLC.Persons import Person, Persons
+from PLC.TagTypes import TagType, TagTypes
+from PLC.PersonTags import PersonTag, PersonTags
 
 # need to import so the core classes get decorated with caller_may_write_tag
 from PLC.AuthorizeHelpers import AuthorizeHelpers
index 28eb768..036ffda 100644 (file)
@@ -7,7 +7,6 @@ from PLC.Parameter import Parameter, Mixed
 from PLC.Auth import Auth
 
 from PLC.Sites import Site, Sites
-from PLC.Nodes import Nodes
 from PLC.TagTypes import TagType, TagTypes
 from PLC.SiteTags import SiteTag, SiteTags
 
index e038e9a..23ab6ab 100644 (file)
@@ -6,8 +6,9 @@ from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
 from PLC.Auth import Auth
 
-from PLC.PersonTags import PersonTag, PersonTags
 from PLC.Persons import Person, Persons
+from PLC.TagTypes import TagType, TagTypes
+from PLC.PersonTags import PersonTag, PersonTags
 
 # need to import so the core classes get decorated with caller_may_write_tag
 from PLC.AuthorizeHelpers import AuthorizeHelpers
index 77d22a5..a5d69f4 100644 (file)
@@ -7,7 +7,6 @@ from PLC.Parameter import Parameter, Mixed
 from PLC.Auth import Auth
 
 from PLC.Sites import Site, Sites
-from PLC.Nodes import Nodes
 from PLC.TagTypes import TagType, TagTypes
 from PLC.SiteTags import SiteTag, SiteTags