From df1ba08b941e7703bcde8a6e1242b03047918adc Mon Sep 17 00:00:00 2001 From: Saugat Pachhai Date: Tue, 21 Jan 2020 17:24:21 +0545 Subject: [PATCH] exception: fix spelling --- dvc/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dvc/exceptions.py b/dvc/exceptions.py index 402ee9c987..3d577db31c 100644 --- a/dvc/exceptions.py +++ b/dvc/exceptions.py @@ -307,6 +307,6 @@ class PathMissingError(DvcException): def __init__(self, path, repo): msg = ( "The path '{}' does not exist in the target repository '{}'" - " neighther as an output nor a git-handled file." + " neither as an output nor a git-handled file." ) super().__init__(msg.format(path, repo))