Open oclyke opened 5 years ago
The patch did not work for me. I am a Python novice, but found this solution that worked for me:
Change line 176 "for line in r.split('\n'):" to "for line in r.decode().split('\n'):"
The function call "decode()" changes the byte array to a string for further processing.
Hope that helps!
Using python 3.7.2 on Windows 10 (version 1803, build 17134.472, and running in Bootcamp) I repeatedly got the following error:
As well as a similar error for the regular expressions split line immediately following. Changing the split strings to byte array objects solved the problem for me, as shown in this commit