--- a/mercurial/debugcommands.py Tue Aug 28 18:12:04 2018 -0700
+++ b/mercurial/debugcommands.py Tue Aug 28 15:37:55 2018 -0700
@@ -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':