-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
(Backport 53996) Fix kwargs iteration for chroot.call #53997
Conversation
ee68c91
to
1503718
Compare
1503718
to
1db22de
Compare
Can you clarify what the bug is? |
Ouch. Sure! I updated the commit message
Yes sorry. I extended a bit the explanation. |
1db22de
to
a37a90c
Compare
Just to leave ourselves a comment on this - changing the parameter name isn't a problem since this is an unreleased feature, but we do need to make sure that this goes in with the chroot feature. |
Rebased on master as part of #54959 |
What does this PR do?
Fix a bug during the call of the kwargs parameters for chroot.call(). In the original code the iteration was done only on the keys, but the code expect the key and the value too. Simply adding
.items()
fix the issue.Tests written?
Yes
(backport #53996)