From 4201bb7f73d710f24126033759630a67de548ffd Mon Sep 17 00:00:00 2001 From: Chris Darroch Date: Thu, 27 Jan 2022 21:35:29 -0800 Subject: [PATCH] commands/lockverifier.go: restore message indent In commit c744476cb73c8489699331fbfc93393786f5a6ed of PR #4781 first part of a multi-line message was made translatable, while the second part, which consists only of an example "git config" command, was not. That change is reasonable; however, some indentation whitespace preceding the example command was lost, so we restore it here. --- commands/lockverifier.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/lockverifier.go b/commands/lockverifier.go index 1c43114e..17688f8e 100644 --- a/commands/lockverifier.go +++ b/commands/lockverifier.go @@ -78,7 +78,7 @@ func (lv *lockVerifier) Verify(ref *git.Ref) { } } else if lv.verifyState == verifyStateUnknown { Print(tr.Tr.Get("Locking support detected on remote %q. Consider enabling it with:", cfg.PushRemote())) - Print("$ git config lfs.%s.locksverify true", lv.endpoint.Url) + Print(" $ git config lfs.%s.locksverify true", lv.endpoint.Url) } lv.addLocks(ref, ours, lv.ourLocks)