diff --git a/django/utils/dictconfig.py b/django/utils/dictconfig.py
index 42fbd93..ab0bfed 100644
a
|
b
|
class BaseConfigurator(object):
|
147 | 147 | 'cfg' : 'cfg_convert', |
148 | 148 | } |
149 | 149 | |
150 | | # We might want to use a different one, e.g. importlib |
151 | | importer = __import__ |
152 | | |
153 | 150 | def __init__(self, config): |
154 | 151 | self.config = ConvertingDict(config) |
155 | 152 | self.config.configurator = self |
156 | 153 | |
| 154 | def importer(self, name, *args, **kwargs): |
| 155 | """ |
| 156 | Imports the module name, potentially using the given globals and |
| 157 | locals to determine how to interpret the name in a package context. |
| 158 | """ |
| 159 | # We might want to use a different one, e.g. importlib |
| 160 | return __import__(name, *args, **kwargs) |
| 161 | |
157 | 162 | def resolve(self, s): |
158 | 163 | """ |
159 | 164 | Resolve strings to objects using standard import and attribute |