Merge pull request #301 from jazzband/space-typo

This commit is contained in:
Brian Helba 2021-10-25 10:33:41 -04:00 committed by GitHub
commit c9c4a02169
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -397,7 +397,7 @@ class PathValue(Value):
value = super().setup(name)
value = os.path.expanduser(value)
if self.check_exists and not os.path.exists(value):
raise ValueError('Path {0!r} does not exist.'.format(value))
raise ValueError('Path {0!r} does not exist.'.format(value))
return os.path.abspath(value)