From ae68dc1a863d3562ea85de9616c1b212aaa5ee77 Mon Sep 17 00:00:00 2001 From: xgecko Date: Fri, 20 Jul 2012 13:03:26 -0700 Subject: Updated to not append template_extension if it is already there. --- pystache/locator.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pystache') diff --git a/pystache/locator.py b/pystache/locator.py index 2189cf2..6ffc951 100644 --- a/pystache/locator.py +++ b/pystache/locator.py @@ -92,7 +92,8 @@ class Locator(object): template_extension = self.template_extension if template_extension is not False: - file_name += os.path.extsep + template_extension + if not file_name.endswith(template_extension): + file_name += os.path.extsep + template_extension return file_name -- cgit v1.2.1