diff --git a/dvc/exceptions.py b/dvc/exceptions.py index 62c0a34669..e5fb6f00d5 100644 --- a/dvc/exceptions.py +++ b/dvc/exceptions.py @@ -335,9 +335,7 @@ class CollectCacheError(DvcException): class NoRemoteInExternalRepoError(DvcException): def __init__(self, url): super(NoRemoteInExternalRepoError, self).__init__( - "No DVC remote is specified in the target repository '{}'".format( - url - ) + "No DVC remote is specified in target repository '{}'.".format(url) )