diff options
| author | Tim Graham <timograham@gmail.com> | 2015-09-05 10:57:19 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-09-05 10:58:23 -0400 |
| commit | 5528e7da1a790aae8f6e0fd61ebccb2b87cbd97a (patch) | |
| tree | f7b8b8a52b787c57ef610fa3e77ff38e19315b46 /django/template/loaders/base.py | |
| parent | fe58d96e50e33b05f2a45f1493eca39ec9b3d030 (diff) | |
Refs #24235 -- Removed unused is_usable attribute from base template Loader.
Diffstat (limited to 'django/template/loaders/base.py')
| -rw-r--r-- | django/template/loaders/base.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/django/template/loaders/base.py b/django/template/loaders/base.py index 46371bc0d4..a4edbe59b5 100644 --- a/django/template/loaders/base.py +++ b/django/template/loaders/base.py @@ -7,7 +7,6 @@ from django.utils.inspect import func_supports_parameter class Loader(object): # Only used to raise a deprecation warning. Remove in Django 1.10. - is_usable = False _accepts_engine_in_init = True def __init__(self, engine): |
