-
Notifications
You must be signed in to change notification settings - Fork 51
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
fix: nested reverts errors #230
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks!
@@ -102,7 +102,10 @@ def __str__(self): | |||
frame = self.stack_trace.last_frame | |||
if hasattr(frame, "vm_error"): | |||
err = frame.vm_error | |||
err.args = (frame.pretty_vm_reason, *err.args[1:]) | |||
if not hasattr(err, "_boa_patched__"): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
might be confusing to future maintainers since this is also used elsewhere to see if the state database has been monkey patched
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated in master b6904a9
Fixes #143
What I did
How I did it
How to verify it
Description for the changelog
Cute Animal Picture