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:10:39 -0400 |
| commit | 4500784b24856b23924e7d36b405f2df1499ea83 (patch) | |
| tree | c7cc1a6060d96ec2450ce777c8e3c5af3925dbbb /django | |
| parent | ac54e6af95a2d38734aa17daad5eaf0ee453acf9 (diff) | |
[1.7.x] Avoided using deprecated version of importlib; refs #23418.
Backport of fbeb7979ee from master
Diffstat (limited to 'django')
| -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 |
