Fixed #21877 -- Renamed django.apps.base to config.

This commit is contained in:
Aymeric Augustin 2014-01-26 13:17:03 +01:00
parent f901b4d6c8
commit 4f03b718f7
4 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
from .base import AppConfig # NOQA
from .config import AppConfig # NOQA
from .registry import apps # NOQA

View File

@ -8,7 +8,7 @@ from django.core.exceptions import ImproperlyConfigured
from django.utils import lru_cache
from django.utils._os import upath
from .base import AppConfig
from .config import AppConfig
class Apps(object):

View File

@ -6,7 +6,7 @@ from functools import update_wrapper
import warnings
from django.apps import apps
from django.apps.base import MODELS_MODULE_NAME
from django.apps.config import MODELS_MODULE_NAME
import django.db.models.manager # NOQA: Imported to register signal handler.
from django.conf import settings
from django.core import checks