# HG changeset patch # User Matt Harbison # Date 1538014885 14400 # Node ID 9c8eff5cfa1bd2307803e74b261a626f1cfa4e6c # Parent 2209e72f9fcb268cde986a64a0447c56d612ca5c py3: mask out None type when printing in `debuglocks` Apparently, %b doesn't allow None. diff -r 2209e72f9fcb -r 9c8eff5cfa1b mercurial/debugcommands.py --- a/mercurial/debugcommands.py Wed Sep 26 21:25:18 2018 -0400 +++ b/mercurial/debugcommands.py Wed Sep 26 22:21:25 2018 -0400 @@ -1436,10 +1436,10 @@ if ":" in locker: host, pid = locker.split(':') if host == socket.gethostname(): - locker = 'user %s, process %s' % (user, pid) + locker = 'user %s, process %s' % (user or b'None', pid) else: locker = 'user %s, process %s, host %s' \ - % (user, pid, host) + % (user or b'None', pid, host) ui.write(("%-6s %s (%ds)\n") % (name + ":", locker, age)) return 1 except OSError as e: