Commit e7b6b477 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki Committed by Jérome Perrin

py2/py3: DownloadableMixin.index_html() should return bytes.

parent 928e4f05
......@@ -167,7 +167,7 @@ class DownloadableMixin:
RESPONSE.setHeader('Accept-Ranges', 'bytes')
else:
RESPONSE.setHeader('Content-Disposition', 'inline')
return str(data)
return bytes(data)
security.declareProtected(Permissions.AccessContentsInformation,
'getStandardFilename')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment