maweki opened this issue 9 years ago · 1 comments
For python3 the line for line in output.split('\n'): needs to be changed into for line in output.decode().split('\n'):.
for line in output.split('\n'):
for line in output.decode().split('\n'):
PR follows
This has been fixed with #2 being merged