Skip to content

Commit

Permalink
Merge pull request #2881 from pared/2711_3
Browse files Browse the repository at this point in the history
NoRemoteInExternalRepoError: fix message
  • Loading branch information
jorgeorpinel authored Dec 2, 2019
2 parents c2ffff0 + 9aec435 commit f91aa06
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions dvc/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)


Expand Down

0 comments on commit f91aa06

Please sign in to comment.