summaryrefslogtreecommitdiff
path: root/pystache/parser.py
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-04-07 19:26:33 -0700
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-04-08 14:21:00 -0700
commit17919ab60d4ec41cfb9b2839653cc10e3517fa69 (patch)
tree7e3f8ed7dc1c1b89d3081be20c320ce18aa26561 /pystache/parser.py
parent4af76cab4700897282f7a358697ae2395641f52f (diff)
downloadpystache-17919ab60d4ec41cfb9b2839653cc10e3517fa69.tar.gz
More Python 3 unit test fixes.
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 d07ebf6..2b96249 100644
--- a/pystache/parser.py
+++ b/pystache/parser.py
@@ -131,7 +131,7 @@ class Parser(object):
if tag_type == '/':
if tag_key != section_key:
- raise ParsingError("Section end tag mismatch: %s != %s" % (repr(tag_key), repr(section_key)))
+ raise ParsingError("Section end tag mismatch: %s != %s" % (tag_key, section_key))
return ParsedTemplate(parse_tree), template[start_index:match_index], end_index