mercurial/debugcommands.py
changeset 41759 aaad36b88298
parent 41755 a4358f7345b4
child 41940 70d2d47314e5
--- a/mercurial/debugcommands.py	Sun Jan 13 20:13:22 2019 -0500
+++ b/mercurial/debugcommands.py	Wed Feb 20 19:28:51 2019 -0500
@@ -1442,8 +1442,8 @@
                     if host == socket.gethostname():
                         locker = 'user %s, process %s' % (user or b'None', pid)
                     else:
-                        locker = 'user %s, process %s, host %s' \
-                                 % (user or b'None', pid, host)
+                        locker = ('user %s, process %s, host %s'
+                                  % (user or b'None', pid, host))
                 ui.write(("%-6s %s (%ds)\n") % (name + ":", locker, age))
                 return 1
             except OSError as e: