Skip to content

Commit a9c95fa

Browse files
committed
Fix f-string for older versions of Python
1 parent f5aa254 commit a9c95fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

spin/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def load_toml(filename):
6262

6363
if not toml_config:
6464
click.secho(
65-
f"Could not load configuration from one of: {", ".join(config_filenames)}",
65+
f"Could not load configuration from one of: {', '.join(config_filenames)}",
6666
file=sys.stderr,
6767
fg="red",
6868
)

0 commit comments

Comments
 (0)