remove env from shell banner

This commit is contained in:
David Lord 2022-08-05 11:29:39 -07:00
parent a0458efef6
commit e3df23374c
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8

View file

@ -954,7 +954,7 @@ def shell_command() -> None:
banner = (
f"Python {sys.version} on {sys.platform}\n"
f"App: {current_app.import_name} [{current_app.env}]\n"
f"App: {current_app.import_name}\n"
f"Instance: {current_app.instance_path}"
)
ctx: dict = {}