Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Python3 compatibility: unicode to str
When transitioning from python2 to python3 the following type class changes occured: python2 -> python3 unicode -> str str -> bytes That means we have to check the python version and do the right type check python3 will throw an error when it tries to use the unicode type because it doesn't exist. Signed-off-by: Jason Wessel <[email protected]> Signed-off-by: Ben Pfaff <[email protected]>
- Loading branch information