Skip to content

Commit a23c5da

Browse files
committed
fixed an f string
1 parent a8afe96 commit a23c5da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/sketchviz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def run(self):
6969
save_path = os.path.join(save_path, filename)
7070
subprocess.run(["sketchviz", temp_name, save_path], check=True)
7171
os.remove(temp_name)
72-
logger.info("Sketchviz: Created SVG image: {save_path}")
72+
logger.info(f"Sketchviz: Created SVG image: {save_path}")
7373

7474
template = Environment(loader=BaseLoader).from_string(TEMPLATE)
7575

0 commit comments

Comments
 (0)