Merge pull request #4749 from pallets/shell-env

remove env from shell banner
This commit is contained in:
David Lord 2022-08-05 11:35:15 -07:00 committed by GitHub
commit e3eaafb56e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 = {}