selectors.py
changeset 7990 a673d1d9a738
parent 7986 552d41237156
child 8032 bcb87336c7d2
--- a/selectors.py	Fri Oct 21 14:32:18 2011 +0200
+++ b/selectors.py	Fri Oct 21 14:32:37 2011 +0200
@@ -1027,12 +1027,7 @@
     def complete(self, cls):
         self.rtype = cls.rtype
         self.role = role(cls)
-        self.target_etype = getattr(cls, 'etype', None)
-        if self.target_etype is not None:
-            warn('[3.6] please rename etype to target_etype on %s' % cls,
-                 DeprecationWarning)
-        else:
-            self.target_etype = getattr(cls, 'target_etype', None)
+        self.target_etype = getattr(cls, 'target_etype', None)
 
 
 class has_related_entities(EntitySelector):
@@ -1084,12 +1079,7 @@
     def complete(self, cls):
         self.rtype = cls.rtype
         self.role = role(cls)
-        self.target_etype = getattr(cls, 'etype', None)
-        if self.target_etype is not None:
-            warn('[3.6] please rename etype to target_etype on %s' % cls,
-                 DeprecationWarning)
-        else:
-            self.target_etype = getattr(cls, 'target_etype', None)
+        self.target_etype = getattr(cls, 'target_etype', None)
 
 
 class has_permission(EntitySelector):