From 91ef9fd8adc49d4d3863cf3582241c53dc9313ab Mon Sep 17 00:00:00 2001 From: Brian Helba Date: Mon, 25 Oct 2021 09:50:51 -0400 Subject: [PATCH] Fix a double space typo in a string --- configurations/values.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configurations/values.py b/configurations/values.py index 2413a1a..8eb3bbc 100644 --- a/configurations/values.py +++ b/configurations/values.py @@ -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)