summaryrefslogtreecommitdiff
path: root/pystache/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'pystache/common.py')
-rw-r--r--pystache/common.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/pystache/common.py b/pystache/common.py
index c1fd7a1..0d0ab01 100644
--- a/pystache/common.py
+++ b/pystache/common.py
@@ -26,6 +26,14 @@ def read(path):
f.close()
+class MissingTags(object):
+
+ """Contains the valid values for Renderer.missing_tags."""
+
+ ignore = 'ignore'
+ strict = 'strict'
+
+
class PystacheError(Exception):
"""Base class for Pystache exceptions."""
pass