Commit 4f4e12a
committed
cmd/git(fix[remote show]): Only add --verbose when explicitly True
why: Using `if verbose is not None:` would add --verbose for both
True and False values. The flag should only be added when verbose=True.
what:
- Change `if verbose is not None:` to `if verbose is True:` in
GitRemoteCmd.show() and GitRemoteManager.show()1 parent 9907486 commit 4f4e12a
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3811 | 3811 | | |
3812 | 3812 | | |
3813 | 3813 | | |
3814 | | - | |
| 3814 | + | |
3815 | 3815 | | |
3816 | 3816 | | |
3817 | 3817 | | |
| |||
4305 | 4305 | | |
4306 | 4306 | | |
4307 | 4307 | | |
4308 | | - | |
| 4308 | + | |
4309 | 4309 | | |
4310 | 4310 | | |
4311 | 4311 | | |
| |||
0 commit comments