py3: mask out None type when printing in `debuglocks`
authorMatt Harbison <matt_harbison@yahoo.com>
Wed, 26 Sep 2018 22:21:25 -0400
changeset 39889 9c8eff5cfa1b
parent 39888 2209e72f9fcb
child 39890 566cc633e637
py3: mask out None type when printing in `debuglocks` Apparently, %b doesn't allow None.
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: