diff options
| author | Tim Graham <timograham@gmail.com> | 2014-09-10 13:07:40 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-09-10 13:07:40 -0400 |
| commit | fbeb7979ee43cb386265ff7aec757e35b4cf61f8 (patch) | |
| tree | 3e65ddbce234f660ce42dd768d54dfa33a3e5b5b | |
| parent | 96010ae15bc2ce6b6a73a224da04fde94242a10d (diff) | |
Avoided using deprecated version of importlib; refs #23418.
| -rw-r--r-- | django/utils/deconstruct.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/utils/deconstruct.py b/django/utils/deconstruct.py index b580e0d238..a51a16961d 100644 --- a/django/utils/deconstruct.py +++ b/django/utils/deconstruct.py @@ -1,3 +1,4 @@ +from __future__ import absolute_import # Avoid importing `importlib` from this package. from importlib import import_module |
