-
Notifications
You must be signed in to change notification settings - Fork 155
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 wrong parameter in get_part_resources() #1835
Conversation
@MidsummerNight Thanks for this fix! There is the DCO check failing (https://stackoverflow.com/questions/25570947/how-to-use-git-interactive-rebase-for-signing-off-a-series-of-commits). On an additional note the usual workflow is to:
|
@MidsummerNight Sign off should be applied to all commits in the PR. Actually I think you could squash all of them into a single commit (https://stackoverflow.com/questions/5189560/squash-my-last-x-commits-together-using-git)
|
Signed-off-by: Tim 'mithro' Ansell <[email protected]> Signed-off-by: Steve <[email protected]>
The assertion error for `get_part_resources()` should print `res_mapping` instead of `part_mapping` (the latter isn't even defined in `get_part_resources()`) Signed-off-by: Steve <[email protected]>
Signed-off-by: Steve <[email protected]>
Signed-off-by: Steve <[email protected]>
5a6fcf4
to
59236e3
Compare
Ugh somehow Tim's Kintex commit got inside...... |
I ran |
I think you may create a new branch from the current HEAD, commit your change with the sign-off and open a new PR |
Yeah that would be a better way. Will do more research on Git and create a new PR tomorrow. |
Filed #1836 with correct sign-off to replace this one. I'll make sure to always sign off properly in future PRs. |
The assertion error for
get_part_resources()
should printres_mapping
instead ofpart_mapping
(the latter isn't even defined inget_part_resources()
). See #1834 for details.