summaryrefslogtreecommitdiff
path: root/pystache/loader.py
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2011-12-23 11:32:01 -0800
committerChris Jerdonek <chris.jerdonek@gmail.com>2011-12-23 15:21:55 -0800
commitb0e78f9abb8d44069f1674bb549de5da8e93cc43 (patch)
tree59d768a827723f742a2fdbcf038ba94362ce622c /pystache/loader.py
parent62d1264b33652dbb2651c5b105dc74af5e3e200b (diff)
downloadpystache-b0e78f9abb8d44069f1674bb549de5da8e93cc43.tar.gz
Change Loader.load_template() to Loader.get().
Diffstat (limited to 'pystache/loader.py')
-rw-r--r--pystache/loader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pystache/loader.py b/pystache/loader.py
index d92f168..84e1a3f 100644
--- a/pystache/loader.py
+++ b/pystache/loader.py
@@ -52,7 +52,7 @@ class Loader(object):
return file_name
- def load_template(self, template_name):
+ def get(self, template_name):
"""
Find and load the given template, and return it as a string.