mercurial/debugcommands.py
changeset 44350 e80da7a63264
parent 44336 8374b69aef75
child 44363 f7459da77f23
--- a/mercurial/debugcommands.py	Fri Jan 10 17:20:12 2020 -0800
+++ b/mercurial/debugcommands.py	Mon Feb 10 20:47:19 2020 -0500
@@ -3498,8 +3498,8 @@
     for r in repo:
         node = repo[r].node()
         tagsnode = cache.getfnode(node, computemissing=False)
-        tagsnodedisplay = hex(tagsnode) if tagsnode else 'missing/invalid'
-        ui.write(b'%s %s %s\n' % (r, hex(node), tagsnodedisplay))
+        tagsnodedisplay = hex(tagsnode) if tagsnode else b'missing/invalid'
+        ui.write(b'%d %s %s\n' % (r, hex(node), tagsnodedisplay))
 
 
 @command(