From a111e91673bcc7c7ec765e6c92aa2395f7e5eafe Mon Sep 17 00:00:00 2001 From: xgecko Date: Sat, 21 Jul 2012 17:46:50 -0700 Subject: Added find_file function, and remove extension check logic from make_file_name --- pystache/locator.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'pystache') diff --git a/pystache/locator.py b/pystache/locator.py index 04260bd..9bb095a 100644 --- a/pystache/locator.py +++ b/pystache/locator.py @@ -91,7 +91,7 @@ class Locator(object): if template_extension is None: template_extension = self.template_extension - if template_extension is not False and not file_name.endswith(template_extension): + if template_extension is not False: file_name += os.path.extsep + template_extension return file_name @@ -123,6 +123,13 @@ class Locator(object): return path + def find_file(self, template_file, search_dirs): + """ + Return the path to a template with the given file name. + + """ + return self._find_path_required(search_dirs, template_file) + def find_name(self, template_name, search_dirs): """ Return the path to a template with the given name. -- cgit v1.2.1