Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork943
Fix missing stderr when the progress parameter of _clone is None#1224
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Fix missing stderr when the progress parameter of _clone is None#1224
Uh oh!
There was an error while loading.Please reload this page.
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 for finding this! I've created a unit test that fails without and succeeds with this change (also withonly the the condition change as I suggested).
Uh oh!
There was an error while loading.Please reload this page.
Are you able to push it into this PR? If not I would be happy to do that for you if you post it here. |
Once approved by@muggenhor this one should be ready to merge. Looks good to me (as the tests are green :) even though without the fix they are not). |
Uh oh!
There was an error while loading.Please reload this page.
Try tofix#1221
The
to_progress_instance
function will convertNone
toRemoteProgress
instance, so the lineif progress_checked
is True ifprogress
parameter isNone
.