From b839b0f51efb8fe4fe29c076f585ddbd667eeef9 Mon Sep 17 00:00:00 2001 From: Kostia Balytskyi Date: Wed, 18 Apr 2018 02:26:19 -0700 Subject: [PATCH] debugcommands: fix test-check-code Differential Revision: D7666396 fbshipit-source-id: 29e49603f1ef086179dfe9c16d8dee2079f82c89 --- mercurial/debugcommands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py index 58eba8c68b..5d1ed8d0f5 100644 --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -1418,7 +1418,7 @@ def debuglocks(ui, repo, **opts): l = malformed if l == malformed: - ui.write("%-14s malformed\n" % (name + ":")) + ui.write(_("%-14s malformed\n") % (name + ":")) return 1 elif l: l.release()