summaryrefslogtreecommitdiff
path: root/pystache
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-03-31 09:49:23 -0700
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-03-31 09:49:23 -0700
commitce5cc9748c8929a045d3993790bd01ee51fc7020 (patch)
treee772285a28adcd095ffdc1ac4bd331aaaa03892d /pystache
parentf2bf491f457c17b3a06b90043018c5599e5517f5 (diff)
downloadpystache-ce5cc9748c8929a045d3993790bd01ee51fc7020.tar.gz
Renamed template.py to parsed.py.
Diffstat (limited to 'pystache')
-rw-r--r--pystache/parsed.py (renamed from pystache/template.py)0
-rw-r--r--pystache/parser.py2
2 files changed, 1 insertions, 1 deletions
diff --git a/pystache/template.py b/pystache/parsed.py
index 12b5cb0..12b5cb0 100644
--- a/pystache/template.py
+++ b/pystache/parsed.py
diff --git a/pystache/parser.py b/pystache/parser.py
index f88f61b..d07ebf6 100644
--- a/pystache/parser.py
+++ b/pystache/parser.py
@@ -9,7 +9,7 @@ This module is only meant for internal use by the renderengine module.
import re
-from template import ParsedTemplate
+from parsed import ParsedTemplate
DEFAULT_DELIMITERS = ('{{', '}}')