Fix a double space typo in a string

This commit is contained in:
Brian Helba 2021-10-25 09:50:51 -04:00
parent 36265ab3f1
commit 91ef9fd8ad

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)