From 8d387842fbf4dbe94bd545335c5f1c0efa6c69c6 Mon Sep 17 00:00:00 2001 From: Ivan Shcheklein Date: Mon, 8 Aug 2022 22:10:16 -0700 Subject: [PATCH] stage add: fix hint message consistency --- dvc/repo/scm_context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dvc/repo/scm_context.py b/dvc/repo/scm_context.py index 6753ef3d66..83f623f286 100644 --- a/dvc/repo/scm_context.py +++ b/dvc/repo/scm_context.py @@ -46,7 +46,7 @@ def track_file( @staticmethod def _make_git_add_cmd(paths: Union[str, Iterable[str]]) -> str: files = " ".join(map(shlex.quote, ensure_list(paths))) - return f"\tgit add {files}".expandtabs(4) + return f"\tgit add {files}" def add(self, paths: Union[str, Iterable[str]]) -> None: from scmrepo.exceptions import UnsupportedIndexFormat