summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Whittaker <carl.whittaker@hogarthww.com>2011-01-13 12:30:17 +0000
committerCarl Whittaker <carl.whittaker@hogarthww.com>2011-01-13 12:30:17 +0000
commitbd0c7cc0e8d0c0c1b764d019ef2b4f260eaea2c6 (patch)
tree8a004a96981cc80e3ccdbc53978e1ef7d20fcfaa
parent27ba90d81003698d06cd999bf6896ba14b5eeeca (diff)
downloadpystache-bd0c7cc0e8d0c0c1b764d019ef2b4f260eaea2c6.tar.gz
Fixing template_extension not being passed into loader.
-rw-r--r--pystache/view.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pystache/view.py b/pystache/view.py
index 5431a58..1281013 100644
--- a/pystache/view.py
+++ b/pystache/view.py
@@ -9,7 +9,7 @@ class View(object):
template_path = None
template = None
template_encoding = None
- template_extension = None
+ template_extension = 'mustache'
def __init__(self, template=None, context=None, **kwargs):
self.template = template