Mercurial > public > mercurial-scm > hg-stable
diff hgext/remotefilelog/debugcommands.py @ 41812:941685500125
remotefilelog: fix format str, blobsize isn't always a #, can be "(missing)"
Differential Revision: https://phab.mercurial-scm.org/D6025
author | Kyle Lippincott <spectral@google.com> |
---|---|
date | Mon, 25 Feb 2019 12:42:48 -0800 |
parents | 876494fd967d |
children | 5fadf6103790 |
line wrap: on
line diff
--- a/hgext/remotefilelog/debugcommands.py Fri Feb 22 19:24:01 2019 -0800 +++ b/hgext/remotefilelog/debugcommands.py Mon Feb 25 12:42:48 2019 -0800 @@ -16,6 +16,7 @@ error, filelog, node as nodemod, + pycompat, revlog, ) from . import ( @@ -276,11 +277,11 @@ totalblobsize += blobsize else: blobsize = "(missing)" - ui.write("%s %s %s%d\n" % ( + ui.write("%s %s %s%s\n" % ( hashformatter(node), hashformatter(deltabase), ('%d' % deltalen).ljust(14), - blobsize)) + pycompat.bytestr(blobsize))) if filename is not None: printtotals()