From 0db60d74e5805f55b4c2e603f5479996e3afa894 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bryan=E4=B8=8D=E5=8F=AF=E6=80=9D=E8=AE=AE?= Date: Fri, 15 Sep 2023 05:23:38 +0800 Subject: [PATCH] fix(command): `init --package` status display (#1312) --- alembic/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alembic/command.py b/alembic/command.py index bd59d42a..dbaa9cf9 100644 --- a/alembic/command.py +++ b/alembic/command.py @@ -106,7 +106,7 @@ def init( os.path.join(os.path.abspath(directory), "__init__.py"), os.path.join(os.path.abspath(versions), "__init__.py"), ]: - with util.status("Adding {path!r}", **config.messaging_opts): + with util.status(f"Adding {path!r}", **config.messaging_opts): with open(path, "w"): pass -- 2.47.2