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