encode the cache content in utf8

This commit is contained in:
tdurieux
2017-10-28 12:15:17 +02:00
parent 320533705c
commit dcabd6697d

View File

@@ -274,7 +274,7 @@ class Anonymous_Github:
if not os.path.exists(os.path.dirname(content_cache_path)):
os.makedirs(os.path.dirname(content_cache_path))
with open(content_cache_path, 'w') as f:
f.write(content)
f.write(content.encode('utf8'))
return content
def is_website(path, repository_config, g_repo):