equal
deleted
inserted
replaced
29 from __future__ import absolute_import |
29 from __future__ import absolute_import |
30 from os import listdir, path |
30 from os import listdir, path |
31 import util.paths as paths |
31 import util.paths as paths |
32 |
32 |
33 _base_path = paths.AbsDir(__file__) |
33 _base_path = paths.AbsDir(__file__) |
34 |
|
35 |
34 |
36 def _GetLocalConnectorClassFactory(name): |
35 def _GetLocalConnectorClassFactory(name): |
37 return lambda: getattr(__import__(name, globals(), locals()), name + "_connector_factory") |
36 return lambda: getattr(__import__(name, globals(), locals()), name + "_connector_factory") |
38 |
37 |
39 |
38 |