- Timestamp:
- 26/03/10 14:26:48 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/NDG_XACML/ndg/xacml/core/functions/__init__.py
r6777 r6780 341 341 'recognised: %r' % functionNs) 342 342 343 # Try i mporting the function class and loading it into the343 # Try instantiating the function class and loading it into the 344 344 # map 345 345 try: 346 self[functionNs] = callModuleObject(classPath) 346 matchFunctionObj = callModuleObject(classPath) 347 self[functionNs] = matchFunctionObj 347 348 except ImportError: 348 349 # No implementation exists - default to Abstract function
Note: See TracChangeset
for help on using the changeset viewer.