195
197
module_path = object.__getattribute__(self, '_module_path')
196
198
module_python_path = '.'.join(module_path)
198
module = __import__(module_python_path, scope, scope, [member])
200
module = __import__(module_python_path, scope, scope, [member], level=0)
199
201
return getattr(module, member)
201
module = __import__(module_python_path, scope, scope, [])
203
module = __import__(module_python_path, scope, scope, [], level=0)
202
204
for path in module_path[1:]:
203
205
module = getattr(module, path)