We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
An exception is thrown at api.py line 218 for Python2 as the basestring type cannot be instantiated.
Offending line: errors.append(basestring(response.status_code))
errors.append(basestring(response.status_code))
Documentation: https://docs.python.org/2.7/library/functions.html#basestring
The text was updated successfully, but these errors were encountered:
e7f9731
fix: Don't use python 2!
Also y'know I fixed it
Sorry, something went wrong.
Thanks! ;)
Load RelatedEvent as MISPEvent.
b2752bd
Fix MISP#76
No branches or pull requests
An exception is thrown at api.py line 218 for Python2 as the basestring type cannot be instantiated.
Offending line:
errors.append(basestring(response.status_code))
Documentation:
https://docs.python.org/2.7/library/functions.html#basestring
The text was updated successfully, but these errors were encountered: