summaryrefslogtreecommitdiff
path: root/pystache/__init__.py
diff options
context:
space:
mode:
authorCarl Whittaker <carl.whittaker@hogarthww.com>2011-01-12 11:32:18 +0000
committerCarl Whittaker <carl.whittaker@hogarthww.com>2011-01-12 11:32:18 +0000
commit28e63d4fa5b845ce4eea33d86ab65c17dd7137ff (patch)
treeb38551106b74f8bf60dd6fc6a1e94df59f61b3b6 /pystache/__init__.py
parent01dd06b313bfae5a9fe6b2b1caf312c94c608f15 (diff)
downloadpystache-28e63d4fa5b845ce4eea33d86ab65c17dd7137ff.tar.gz
Adding template Loader class
Diffstat (limited to 'pystache/__init__.py')
-rw-r--r--pystache/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pystache/__init__.py b/pystache/__init__.py
index bb832b8..314c5c8 100644
--- a/pystache/__init__.py
+++ b/pystache/__init__.py
@@ -1,5 +1,6 @@
from pystache.template import Template
from pystache.view import View
+from pystache.loader import Loader
def render(template, context=None, **kwargs):
context = context and context.copy() or {}