entity.py
changeset 8748 f5027f8d2478
parent 8735 5567a5117aeb
child 8791 892fc9e0c8df
--- a/entity.py	Wed Mar 20 17:58:14 2013 +0100
+++ b/entity.py	Tue Mar 12 12:50:05 2013 +0100
@@ -33,7 +33,7 @@
 from rql.nodes import (Not, VariableRef, Constant, make_relation,
                        Relation as RqlRelation)
 
-from cubicweb import Unauthorized, typed_eid, neg_role
+from cubicweb import Unauthorized, neg_role
 from cubicweb.utils import support_args
 from cubicweb.rset import ResultSet
 from cubicweb.appobject import AppObject
@@ -627,7 +627,7 @@
         meaning that the entity has to be created
         """
         try:
-            typed_eid(self.eid)
+            int(self.eid)
             return True
         except (ValueError, TypeError):
             return False