summaryrefslogtreecommitdiff
path: root/pystache/defaults.py
diff options
context:
space:
mode:
Diffstat (limited to 'pystache/defaults.py')
-rw-r--r--pystache/defaults.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pystache/defaults.py b/pystache/defaults.py
index a510cfe..0a20328 100644
--- a/pystache/defaults.py
+++ b/pystache/defaults.py
@@ -38,6 +38,9 @@ STRING_ENCODING = sys.getdefaultencoding()
# strings that arise from files.
FILE_ENCODING = sys.getdefaultencoding()
+# The delimiters to start with when parsing.
+DELIMITERS = (u'{{', u'}}')
+
# How to handle missing tags when rendering a template.
MISSING_TAGS = MissingTags.ignore