Skip to content

Commit 83f1322

Browse files
authored
Fix missing f specifier in f-string used to print config file path (#433)
1 parent f80d347 commit 83f1322

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_core/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def ask() -> str:
158158
return
159159

160160
config_text = self.generate_config_file()
161-
print("Writing default config to: {config_file!r}")
161+
print(f"Writing default config to: {config_file!r}")
162162
ensure_dir_exists(Path(config_file).parent.resolve(), 0o700)
163163
with Path.open(Path(config_file), mode="w", encoding="utf-8") as f:
164164
f.write(config_text)

0 commit comments

Comments
 (0)