Skip to content

Commit

Permalink
Fix dev-server warning message readability (#3168)
Browse files Browse the repository at this point in the history
  • Loading branch information
DamianSkrzypczak authored and davidism committed May 17, 2019
1 parent ab3f922 commit e2f4b53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flask/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,8 +644,8 @@ def show_server_banner(env, debug, app_import_path, eager_loading):

if env == 'production':
click.secho(
' WARNING: Do not use the development server in a production'
' environment.', fg='red')
' WARNING: This is a development server. '
'Do not use it in a production deployment.', fg='red')
click.secho(' Use a production WSGI server instead.', dim=True)

if debug is not None:
Expand Down

0 comments on commit e2f4b53

Please sign in to comment.