mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
Fix a double space typo in a string
This commit is contained in:
parent
36265ab3f1
commit
91ef9fd8ad
1 changed files with 1 additions and 1 deletions
|
|
@ -397,7 +397,7 @@ class PathValue(Value):
|
||||||
value = super().setup(name)
|
value = super().setup(name)
|
||||||
value = os.path.expanduser(value)
|
value = os.path.expanduser(value)
|
||||||
if self.check_exists and not os.path.exists(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)
|
return os.path.abspath(value)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue