Get more things working

This commit is contained in:
Dave Halter
2018-09-17 02:16:16 +02:00
parent 62df944c47
commit 93d50e0f0c

View File

@@ -20,7 +20,7 @@ class CompiledValue(ContextWrapper):
self._compiled_obj = compiled_obj
def __getattribute__(self, name):
if name in ('get_safe_value', 'execute_operation'):
if name in ('get_safe_value', 'execute_operation', 'access_handle'):
return getattr(self._compiled_obj, name)
return super(CompiledValue, self).__getattribute__(name)