openpilot v0.6.5 release

old-commit-hash: cf80f7a28bc737f50e096b21dea2dd2d6d4a1621
This commit is contained in:
Vehicle Researcher
2019-10-09 18:43:53 +00:00
parent 8a2b63b019
commit 89d1d84c70
242 changed files with 2888 additions and 1391 deletions

View File

@@ -9,7 +9,7 @@ def ffi_wrap(name, c_code, c_header, tmpdir="/tmp/ccache", cflags="", libraries=
if libraries is None:
libraries = []
cache = name + "_" + hashlib.sha1(c_code).hexdigest()
cache = name + "_" + hashlib.sha1(c_code.encode('utf-8')).hexdigest()
try:
os.mkdir(tmpdir)
except OSError: