diff --git a/django/db/__init__.py b/django/db/__init__.py index d4ea1403bda..8f75e0d7b89 100644 --- a/django/db/__init__.py +++ b/django/db/__init__.py @@ -34,8 +34,8 @@ except ImportError, e: raise # If there's some other error, this must be an error in Django itself. def _import_database_module(import_path='', module_name=''): - """Lazyily import a database module when requested.""" - return __import__('%s%s.%s' % (_import_path, settings.DATABASE_ENGINE, module_name), {}, {}, ['']) + """Lazily import a database module when requested.""" + return __import__('%s%s.%s' % (import_path, settings.DATABASE_ENGINE, module_name), {}, {}, ['']) # We don't want to import the introspect/creation modules unless # someone asks for 'em, so lazily load them on demmand.