Details
Details
- Reviewers
yuja durin42 - Group Reviewers
hg-reviewers - Commits
- rHG853bf7d90804: blackbox: if --debug is used, also trace ui.debug() calls
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Lint Skipped - Unit
Unit Tests Skipped
Event Timeline
Comment Actions
I'm 0 on this, but I have no reason against it.
| hgext/blackbox.py | ||
|---|---|---|
| 136 | These arguments can't be passed directly to .log(). Perhaps **opts should be dropped. | |
| hgext/blackbox.py | ||
|---|---|---|
| 136 | Fixed, thanks. | |
These arguments can't be passed directly to .log().
.log() takes a format string and its parameters, whereas .debug()
takes a list of arbitrary strings to print.
Perhaps **opts should be dropped.