summaryrefslogtreecommitdiff
path: root/pystache/parser.py
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-04-08 19:16:21 -0700
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-04-08 19:16:21 -0700
commitf9bda3a5ce2725ca2e2b5a89fbd8a1b1e7642a90 (patch)
tree32326064cec0b5b297f4e3dbf2423e38753b9d65 /pystache/parser.py
parentb042d08429b95d76589ea69d14d7a44bcb32c3a1 (diff)
downloadpystache-f9bda3a5ce2725ca2e2b5a89fbd8a1b1e7642a90.tar.gz
More Python 3 unit test fixes; README doctests also now working.
Diffstat (limited to 'pystache/parser.py')
-rw-r--r--pystache/parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pystache/parser.py b/pystache/parser.py
index 2b96249..ccb6827 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 parsed import ParsedTemplate
+from pystache.parsed import ParsedTemplate
DEFAULT_DELIMITERS = ('{{', '}}')