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
I think 619538c introduced a bug in:
Example:
def change_threat_level(self, event, threat_level_id): e = self._make_mispevent(event) e.threat_level_id = threat_level_id return self.update(event)
self.update should be called with e as argument, not event.
self.update
e
event
The text was updated successfully, but these errors were encountered:
Thanks for the report, fixing!
Sorry, something went wrong.
14ccf16
Merge pull request MISP#46 from plutec/master
0f9c2ca
Update README.md with install instructions
No branches or pull requests
I think 619538c introduced a bug in:
Example:
self.update
should be called withe
as argument, notevent
.The text was updated successfully, but these errors were encountered: