Submitter | phabricator |
---|---|
Date | Feb. 18, 2018, 8:54 p.m. |
Message ID | <differential-rev-PHID-DREV-injpqzs4iyuundwv5q4p-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/28132/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/lock.py b/mercurial/lock.py --- a/mercurial/lock.py +++ b/mercurial/lock.py @@ -84,9 +84,9 @@ l.delay = delay if l.delay: if 0 <= warningidx <= l.delay: - ui.warn(_("got lock after %s seconds\n") % l.delay) + ui.warn(_("got lock after %d seconds\n") % l.delay) else: - ui.debug("got lock after %s seconds\n" % l.delay) + ui.debug("got lock after %d seconds\n" % l.delay) if l.acquirefn: l.acquirefn() return l