Merge "Decode additional heat files"

This commit is contained in:
Zuul 2018-05-24 00:41:30 +00:00 committed by Gerrit Code Review
commit 2d4be744a9

View File

@ -46,7 +46,7 @@ def read_url_content(url):
if content:
try:
content.decode('utf-8')
content = content.decode('utf-8')
except ValueError:
content = base64.encodestring(content)
return content