updated urn_to_hrn to be compliant with standard
authorJosh Karlin <jkarlin@bbn.com>
Thu, 15 Jul 2010 19:52:54 +0000 (19:52 +0000)
committerJosh Karlin <jkarlin@bbn.com>
Thu, 15 Jul 2010 19:52:54 +0000 (19:52 +0000)
sfa/util/namespace.py

index c771d71..d036f06 100644 (file)
@@ -66,8 +66,7 @@ def urn_to_hrn(urn):
     name = urn[len(URN_PREFIX):]
     hrn_parts = name.split("+")
     
-    # type is always the second to last element in the list
-    type = hrn_parts.pop(-2)
+    type = hrn_parts.pop(2)
 
     # convert hrn_parts (list) into hrn (str) by doing the following    
     # remove blank elements