Skip to content
Snippets Groups Projects
Commit f6efb3c0 authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

py3: fix formatting of lock error message

parent 77f98867
No related merge requests found
......@@ -50,6 +50,7 @@
# show more details for new-style locks
if ':' in locker:
host, pid = locker.split(":", 1)
msg = _("waiting for lock on %s held by process %r "
"on host %r\n") % (l.desc, pid, host)
msg = (_("waiting for lock on %s held by process %r on host %r\n")
% (pycompat.bytestr(l.desc), pycompat.bytestr(pid),
pycompat.bytestr(host)))
else:
......@@ -55,5 +56,6 @@
else:
msg = _("waiting for lock on %s held by %r\n") % (l.desc, locker)
msg = (_("waiting for lock on %s held by %r\n")
% (l.desc, pycompat.bytestr(locker)))
printer(msg)
l = lock(vfs, lockname, 0, *args, dolock=False, **kwargs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment