From a3452f28e88a985f9300fc7321b8be1530153e4f Mon Sep 17 00:00:00 2001 From: dberenbaum Date: Mon, 25 Oct 2021 13:59:10 -0400 Subject: [PATCH] fix msg in for ExperimentExistsError --- dvc/repo/experiments/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dvc/repo/experiments/base.py b/dvc/repo/experiments/base.py index a922e7f2e6..69a7f98533 100644 --- a/dvc/repo/experiments/base.py +++ b/dvc/repo/experiments/base.py @@ -36,7 +36,7 @@ def __init__(self, rev, expected): class ExperimentExistsError(DvcException): def __init__(self, name: str): msg = ( - "Reproduced experiment conflicts with existing experiment " + "Experiment conflicts with existing experiment " f"'{name}'. To overwrite the existing experiment run:\n\n" "\tdvc exp run -f ...\n\n" "To run this experiment with a different name run:\n\n"