-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError: startswith first arg must be bytes or a tuple of bytes, not str #23
Comments
The current code works with Python 2.7.13. Not with 2.7.6, or with Python 3. Getting it working with Python 3 is an important enhancement request. |
README.md states |
I agree py3 compatibility is imporant feature request! :) |
What. Why does the setup.py list the classifiers:
If none of that is actually true? It is the easiest way to quickly check which version of python something is meant for. 😞 Also setuptools allows you to mark which versions of python are compatible... |
I've tried changing
data.startswith('-----')
todata.startswith(b'-----')
, but got another error:The text was updated successfully, but these errors were encountered: