From 2e091f67b5537059b453403b7df56a29d5f20bbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Santos?= Date: Mon, 3 Feb 2020 17:30:18 +0000 Subject: [PATCH] commit: add missing space The prompt shown when committing without `-f` had a missing space between sentences. --- dvc/stage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dvc/stage.py b/dvc/stage.py index d63e9dfb8a..4efdb7b12d 100644 --- a/dvc/stage.py +++ b/dvc/stage.py @@ -809,7 +809,7 @@ def check_can_commit(self, force): msg += " and " if (changed_deps and changed_outs) else "" msg += "outputs {}".format(changed_outs) if changed_outs else "" msg += "md5" if not (changed_deps or changed_outs) else "" - msg += " of '{}' changed.".format(self.relpath) + msg += " of '{}' changed. ".format(self.relpath) msg += "Are you sure you want to commit it?" if not force and not prompt.confirm(msg): raise StageCommitError(