From 89e8de58f959d831c80f16d7db45e62ba105719c Mon Sep 17 00:00:00 2001 From: David Rose Date: Sat, 28 Jun 2003 19:01:32 +0000 Subject: [PATCH] remove legacy --- direct/src/extensions/NodePath-extensions.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/direct/src/extensions/NodePath-extensions.py b/direct/src/extensions/NodePath-extensions.py index 82430a58fc..62e5a9907e 100644 --- a/direct/src/extensions/NodePath-extensions.py +++ b/direct/src/extensions/NodePath-extensions.py @@ -6,12 +6,7 @@ def id(self): """Returns a unique id identifying the NodePath instance""" - try: - # Old style scene graph - return self.arc() - except: - # New style scene graph - return self.getKey() + return self.getKey() def getName(self): """Returns the name of the bottom node if it exists, or """