commit | 7e40df0f7a97fb22510c978226b4ab6bd953fbec | [log] [tgz] |
---|---|---|
author | Armin Ronacher <armin.ronacher@active-4.com> | Thu Jan 14 00:54:47 2010 +0100 |
committer | Armin Ronacher <armin.ronacher@active-4.com> | Thu Jan 14 00:54:47 2010 +0100 |
tree | 72cfb0677567b5493477d7fe8af7688c68da73e6 | |
parent | 31bbd9e34d2c612686bb9cebe4efe4e54d81c751 [diff] [blame] |
Fixed the choice include tests. --HG-- branch : trunk
diff --git a/jinja2/exceptions.py b/jinja2/exceptions.py index 96194a9..acb26db 100644 --- a/jinja2/exceptions.py +++ b/jinja2/exceptions.py
@@ -59,7 +59,7 @@ def __init__(self, names=(), message=None): if message is None: message = u'non of the templates given were found: ' + \ - u', '.join(names) + u', '.join(map(unicode, names)) TemplateNotFound.__init__(self, names and names[-1] or None, message) self.templates = list(names)