diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-03-05 19:55:13 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-03-05 19:55:13 +0000 |
commit | 81b0b90d83aaff20a92f3823dca9660b5b6e6775 (patch) | |
tree | 9666a885774b02cf0b12589aceabf853b4518e42 /test/test_exceptions.py | |
parent | 7c526147cf55d9b4656e59ee4db83cccfb4b861d (diff) | |
download | external_python_mako-81b0b90d83aaff20a92f3823dca9660b5b6e6775.tar.gz external_python_mako-81b0b90d83aaff20a92f3823dca9660b5b6e6775.tar.bz2 external_python_mako-81b0b90d83aaff20a92f3823dca9660b5b6e6775.zip |
README cleanup, fix a new test for py3k
Diffstat (limited to 'test/test_exceptions.py')
-rw-r--r-- | test/test_exceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_exceptions.py b/test/test_exceptions.py index e64afc2..22f879d 100644 --- a/test/test_exceptions.py +++ b/test/test_exceptions.py @@ -137,7 +137,7 @@ ${foobar} try: raise RuntimeError("error 2") except: - html_error = exceptions.html_error_template().render(error=t, traceback=tback) + html_error = exceptions.html_error_template().render_unicode(error=t, traceback=tback) # obfuscate the text so that this text # isn't in the 'wrong' exception |