summaryrefslogtreecommitdiff
path: root/django/template/engine.py
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2016-12-29 16:27:49 +0100
committerClaude Paroz <claude@2xlibre.net>2017-01-18 20:18:46 +0100
commit7b2f2e74adb36a4334e83130f6abc2f79d395235 (patch)
tree313387ba6a6f1311b43cf5fb4f2576d2d6c4f805 /django/template/engine.py
parentf6acd1d271122d66de8061e75ae26137ddf02658 (diff)
Refs #23919 -- Removed six.<various>_types usage
Thanks Tim Graham and Simon Charette for the reviews.
Diffstat (limited to 'django/template/engine.py')
-rw-r--r--django/template/engine.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/template/engine.py b/django/template/engine.py
index 154276a5b0..6d73569e02 100644
--- a/django/template/engine.py
+++ b/django/template/engine.py
@@ -1,5 +1,5 @@
from django.core.exceptions import ImproperlyConfigured
-from django.utils import lru_cache, six
+from django.utils import lru_cache
from django.utils.functional import cached_property
from django.utils.module_loading import import_string
@@ -120,7 +120,7 @@ class Engine(object):
else:
args = []
- if isinstance(loader, six.string_types):
+ if isinstance(loader, str):
loader_class = import_string(loader)
return loader_class(self, *args)
else: