Skip to content

Commit f91aa06

Browse files
authored
Merge pull request #2881 from pared/2711_3
NoRemoteInExternalRepoError: fix message
2 parents c2ffff0 + 9aec435 commit f91aa06

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dvc/exceptions.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -335,9 +335,7 @@ class CollectCacheError(DvcException):
335335
class NoRemoteInExternalRepoError(DvcException):
336336
def __init__(self, url):
337337
super(NoRemoteInExternalRepoError, self).__init__(
338-
"No DVC remote is specified in the target repository '{}'".format(
339-
url
340-
)
338+
"No DVC remote is specified in target repository '{}'.".format(url)
341339
)
342340

343341

0 commit comments

Comments
 (0)