Skip to content

Commit 8973b31

Browse files
committed
add missing f-string
Fixes: #1659 Change-Id: Ic6d59b95017088c4e3d8cf5e5a2a75448057c5fb
1 parent 7670b2f commit 8973b31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

alembic/command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def init(
6868
template_path = config._get_template_path() / template
6969

7070
if not template_path.exists():
71-
raise util.CommandError("No such template {template_path}")
71+
raise util.CommandError(f"No such template {template_path}")
7272

7373
# left as os.access() to suit unit test mocking
7474
if not os.access(directory_path, os.F_OK):

0 commit comments

Comments
 (0)