Skip to content

Commit

Permalink
Merge pull request #4749 from pallets/shell-env
Browse files Browse the repository at this point in the history
remove env from shell banner
  • Loading branch information
davidism committed Aug 5, 2022
2 parents a0458ef + e3df233 commit e3eaafb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flask/cli.py
Expand Up @@ -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 = {}
Expand Down

0 comments on commit e3eaafb

Please sign in to comment.