Skip to content

Commit 71b5fb3

Browse files
committed
travising python 3 fails. III
1 parent 65c5377 commit 71b5fb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wllvm/compilers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def outputFileCallback(self, flag, filename):
7474

7575

7676
def getHashedPathName(path):
77-
return hashlib.sha256(path).encode('utf-8').hexdigest() if path else None
77+
return hashlib.sha256(path.encode('utf-8')).hexdigest() if path else None
7878

7979

8080
def attachBitcodePathToObject(bcPath, outFileName):

0 commit comments

Comments
 (0)