Update config.py with f string (#101333)
Co-authored-by: Franck Nijhof <git@frenck.dev>pull/94739/head
parent
e25cf7cbab
commit
3018d4edb9
|
@ -378,7 +378,9 @@ def _write_default_config(config_dir: str) -> bool:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
except OSError:
|
except OSError:
|
||||||
print("Unable to create default configuration file", config_path) # noqa: T201
|
print( # noqa: T201
|
||||||
|
f"Unable to create default configuration file {config_path}"
|
||||||
|
)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue