diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -32,9 +32,6 @@ nullrev, short, ) -from .thirdparty import ( - cbor, -) from . import ( bundle2, changegroup, @@ -83,6 +80,7 @@ wireprotov2peer, ) from .utils import ( + cborutil, dateutil, procutil, stringutil, @@ -3321,7 +3319,8 @@ if res.headers.get('Content-Type') == 'application/mercurial-cbor': ui.write(_('cbor> %s\n') % - stringutil.pprint(cbor.loads(body), bprefix=True, + stringutil.pprint(cborutil.decodeall(body)[0], + bprefix=True, indent=2)) elif action == 'close':