Skip to content

Commit

Permalink
Fix some Django 1.9 warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenmcd committed Jul 17, 2015
1 parent 416dd2f commit 8ca1076
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mezzanine/generic/fields.py
Expand Up @@ -3,7 +3,7 @@

from copy import copy

from django.contrib.contenttypes.generic import GenericRelation
from django.contrib.contenttypes.fields import GenericRelation
from django.core.exceptions import ImproperlyConfigured, AppRegistryNotReady
from django.db.models import IntegerField, CharField, FloatField
from django.db.models.signals import post_save, post_delete
Expand Down
2 changes: 1 addition & 1 deletion mezzanine/pages/page_processors.py
Expand Up @@ -2,9 +2,9 @@
from future.builtins import str as _str

from collections import defaultdict
from importlib import import_module

from django.apps import apps
from django.utils.importlib import import_module
from django.utils.module_loading import module_has_submodule

from mezzanine.pages.models import Page
Expand Down

0 comments on commit 8ca1076

Please sign in to comment.