From fc57964b035d3ee7d6e18455d60e3fa23e4cf345 Mon Sep 17 00:00:00 2001 From: noah morrison Date: Sat, 29 Nov 2014 17:24:06 -0500 Subject: [PATCH] Fix python 2 encoding problem with the new docstr Python 2 did not like my fancy new doc string with the unicode filetree --- chevron/renderer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chevron/renderer.py b/chevron/renderer.py index 0ee3cbd..de23cbf 100644 --- a/chevron/renderer.py +++ b/chevron/renderer.py @@ -1,5 +1,5 @@ #!/usr/bin/python - +# -*- coding: utf-8 -*- # # Python 2 and 3, module and script compatability -- 2.47.3