Details
Details
- Reviewers
- None
- Group Reviewers
hg-reviewers - Commits
- rHG941685500125: remotefilelog: fix format str, blobsize isn't always a #, can be "(missing)"
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
It was changed to %d because %s % int does not work on Python 3. I think %s % pycompat.bytestr(blobsize) should work on both python versions.