Sign in
android
/
platform
/
external
/
python
/
mako
/
afb6caa
/
.
/
test
/
templates
/
read_unicode_py3k.html
blob: 380d35622ff51dc01d7a760f686723d8ed741ad8 [
file
]
<%
try
:
file_content
=
open
(
path
)
except
:
raise
"Should never execute here"
doc_content
=
''
.
join
(
file_content
.
readlines
())
file_content
.
close
()
%>
${bytes(doc_content, encoding='utf-8')}