-
Notifications
You must be signed in to change notification settings - Fork 4
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
AttributeError: 'MBInfo' object has no attribute 'diff' #5
Comments
@burnpanck I also ping you, as the python implementation is coming from you. |
Huh, that was a long time ago, took me some time to even recognise what this was! I was even using Enthought's In any case, I have no intention to spend much time on this at this point. I vaguely remember that the script simplifies the git commit tree to a graph where branch and merge commits are considered nodes, and sequences of regular commits are edges. It then first selects the "best" edge, and bisects that edge to find the best commit. The failure seems to come from the edge selection part. Apparently, each commit is represented using a if isinstance(c, MBInfo):
c = c.commit although one should never fix something one doesn't understand, and I don't fully understand the exact issue here. |
Thank you very much for the reply. I've now solved my issue with a simple loop, as for my use case it is not important to analyze the complete graph. Further, I only had to compare a single file and not a complete tree. Here my line for the reference.
(The |
git-diff-search fails with:
The text was updated successfully, but these errors were encountered: