diff options
| author | Tim Graham <timograham@gmail.com> | 2013-07-16 09:10:04 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-07-24 06:56:33 -0400 |
| commit | 31c13a99bb9ebdaf12ccab4e880c5da930d86e79 (patch) | |
| tree | d7b2fcf5cbc526bf63ffe1a3b521ccc0e3f1d39c /django/db/models/__init__.py | |
| parent | c928725b933ff479c04e8a7fb74c4dc2ba138aa7 (diff) | |
Fixed #14300 -- Fixed initial SQL location if models is a package.
Thanks al_the_x for the report and fheinz for the draft patch.
Diffstat (limited to 'django/db/models/__init__.py')
| -rw-r--r-- | django/db/models/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/__init__.py b/django/db/models/__init__.py index 4d310e480b..33151e068d 100644 --- a/django/db/models/__init__.py +++ b/django/db/models/__init__.py @@ -1,7 +1,7 @@ from functools import wraps from django.core.exceptions import ObjectDoesNotExist, ImproperlyConfigured -from django.db.models.loading import get_apps, get_app_paths, get_app, get_models, get_model, register_models, UnavailableApp +from django.db.models.loading import get_apps, get_app_path, get_app_paths, get_app, get_models, get_model, register_models, UnavailableApp from django.db.models.query import Q from django.db.models.expressions import F from django.db.models.manager import Manager |
