From dff27bb163419bd2f93acaa0906dfdee7359d9d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arthur=20Colombini=20Gusm=C3=A3o?= Date: Fri, 31 Jul 2020 11:52:46 +0200 Subject: [PATCH] Fix typo in `dvc remote modify` output --- dvc/command/remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dvc/command/remote.py b/dvc/command/remote.py index a3484a7be6..1cb4a3a869 100644 --- a/dvc/command/remote.py +++ b/dvc/command/remote.py @@ -18,7 +18,7 @@ def __init__(self, args): def _check_exists(self, conf): if self.args.name not in conf["remote"]: - raise ConfigError(f"remote '{self.args.name}' doesn't exists.") + raise ConfigError(f"remote '{self.args.name}' doesn't exist.") class CmdRemoteAdd(CmdRemote):