summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2014-11-15 19:06:34 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2014-11-16 21:28:37 +0100
commitcd7146debec77ef787a7ecb59a482f47968f5601 (patch)
treea70e26235813f6f0a2d3449617246433befab229
parentc211c59b4a9ef66152eee0109107f22a9bd1a22f (diff)
Removed skip_template argument of locmem.Loader.load_template_source.
It didn't do anything, wasn't documented and wasn't used anywhere.
-rw-r--r--django/template/loaders/locmem.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/django/template/loaders/locmem.py b/django/template/loaders/locmem.py
index e61db5f15d..ba6b15ef51 100644
--- a/django/template/loaders/locmem.py
+++ b/django/template/loaders/locmem.py
@@ -13,8 +13,7 @@ class Loader(BaseLoader):
def __init__(self, templates_dict):
self.templates_dict = templates_dict
- def load_template_source(self, template_name, template_dirs=None,
- skip_template=None):
+ def load_template_source(self, template_name, template_dirs=None):
try:
return self.templates_dict[template_name], template_name
except KeyError: