diff options
Diffstat (limited to 'platform_utils.py')
-rw-r--r-- | platform_utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform_utils.py b/platform_utils.py index d720a07e..4cf994bc 100644 --- a/platform_utils.py +++ b/platform_utils.py | |||
@@ -57,8 +57,8 @@ def _validate_winpath(path): | |||
57 | if _winpath_is_valid(path): | 57 | if _winpath_is_valid(path): |
58 | return path | 58 | return path |
59 | raise ValueError( | 59 | raise ValueError( |
60 | 'Path "{}" must be a relative path or an absolute ' | 60 | f'Path "{path}" must be a relative path or an absolute ' |
61 | "path starting with a drive letter".format(path) | 61 | "path starting with a drive letter" |
62 | ) | 62 | ) |
63 | 63 | ||
64 | 64 | ||