summaryrefslogtreecommitdiff
path: root/test/templates/read_unicode.html
diff options
context:
space:
mode:
Diffstat (limited to 'test/templates/read_unicode.html')
-rw-r--r--test/templates/read_unicode.html10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/templates/read_unicode.html b/test/templates/read_unicode.html
deleted file mode 100644
index 50f00c3..0000000
--- a/test/templates/read_unicode.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<%
-try:
- file_content = open(path)
-except:
- raise "Should never execute here"
-doc_content = ''.join(file_content.readlines())
-file_content.close()
-%>
-
-${unicode(doc_content, encoding='utf-8')}