208
208
module_path = object.__getattribute__(self, '_module_path')
209
209
module_python_path = '.'.join(module_path)
211
module = __import__(module_python_path, scope, scope, [member])
211
module = __import__(module_python_path, scope, scope, [member], level=0)
212
212
return getattr(module, member)
214
module = __import__(module_python_path, scope, scope, [])
214
module = __import__(module_python_path, scope, scope, [], level=0)
215
215
for path in module_path[1:]:
216
216
module = getattr(module, path)