This change is to help extensions by not forcing them to populate with
opts[b'bundle'] and opts[b'force'] when calling hg.incoming(...)
Details
Details
- Reviewers
 martinvonz - Group Reviewers
 hg-reviewers - Commits
 - rHG1d70fb83ff4a: hg: let extensions call the func without populating opts keys
 
Diff Detail
Diff Detail
- Repository
 - rHG Mercurial
 - Branch
 - default
 - Lint
 No Linters Available - Unit
 No Unit Test Coverage 
Event Timeline
Comment Actions
This needs a clearer commit message. I *think* what you mean is that you're doing this in order to let extensions call these functions without populating the opts[b"bundle"] etc. However, does your extension really want to call debugbackupbundle()? Or do the KeyErrors actually happen when you simply run some hg commands? Which ones?
Comment Actions
Yes. I will change the commit message.
However, does your extension really want to call debugbackupbundle()?
No. The extension don't intend to call debugbackupbundle(). I just thought it's no harm to make the change here as well. I'll undo it.