diff --git a/whoville/utils.py b/whoville/utils.py index 143c0a9..90ef91e 100644 --- a/whoville/utils.py +++ b/whoville/utils.py @@ -342,7 +342,7 @@ def _recurse_github_dir(g_repo, r_tgt, r_ref): out[obj.name] = _recurse_github_dir(g_repo, obj.path, r_ref) elif obj.type == 'file': if obj.name.rsplit('.')[1] not in ['yaml', 'json']: - out[obj.name] = obj.decoded_content + out[obj.name] = obj.decoded_content.decode('utf-8') else: out[obj.name] = load(obj.decoded_content) return out