summaryrefslogtreecommitdiff
path: root/pystache/init.py
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2011-12-28 17:32:09 -0800
committerChris Jerdonek <chris.jerdonek@gmail.com>2011-12-28 17:32:09 -0800
commit761ccf447502460f91c9653a39437c52be8b4995 (patch)
treec6b50e1df829ed3cc454f91a257a0447de591e68 /pystache/init.py
parentc8ee84f90c4db2c8f7a35a9c86c55f03a5cd8254 (diff)
downloadpystache-761ccf447502460f91c9653a39437c52be8b4995.tar.gz
Changed the Loader class to a Locator class.
Now the class no longer has an indirect dependency on the Reader class.
Diffstat (limited to 'pystache/init.py')
-rw-r--r--pystache/init.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pystache/init.py b/pystache/init.py
index 7d5d4d7..1a60028 100644
--- a/pystache/init.py
+++ b/pystache/init.py
@@ -7,10 +7,9 @@ This module contains the initialization logic called by __init__.py.
from .renderer import Renderer
from .view import View
-from .loader import Loader
-__all__ = ['render', 'Loader', 'Renderer', 'View']
+__all__ = ['render', 'Renderer', 'View']
def render(template, context=None, **kwargs):