Commit cd7146de authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

Removed skip_template argument of locmem.Loader.load_template_source.

It didn't do anything, wasn't documented and wasn't used anywhere.
parent c211c59b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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: