summaryrefslogtreecommitdiff
path: root/examples/inverted.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/inverted.py')
-rw-r--r--examples/inverted.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/examples/inverted.py b/examples/inverted.py
index e0f7aaf..2a05302 100644
--- a/examples/inverted.py
+++ b/examples/inverted.py
@@ -1,7 +1,6 @@
-import pystache
+from pystache import TemplateSpec
-class Inverted(pystache.View):
- template_path = 'examples'
+class Inverted(object):
def t(self):
return True
@@ -14,11 +13,11 @@ class Inverted(pystache.View):
def empty_list(self):
return []
-
+
def populated_list(self):
return ['some_value']
-class InvertedLists(Inverted):
+class InvertedLists(Inverted, TemplateSpec):
template_name = 'inverted'
def t(self):