summaryrefslogtreecommitdiff
path: root/pystache
diff options
context:
space:
mode:
Diffstat (limited to 'pystache')
-rw-r--r--pystache/locator.py3
1 files changed, 2 insertions, 1 deletions
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