From 9aec435cac772b6c3e6cfb0674ca4f0898e9dc46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Redzy=C5=84ski?= Date: Mon, 2 Dec 2019 11:58:09 +0100 Subject: [PATCH] NoRemoteInExternalRepoError: fix message --- dvc/exceptions.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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) )