We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf4923b commit 975f979Copy full SHA for 975f979
CHANGES.rst
@@ -11,6 +11,7 @@ Unreleased
11
- ``send_file`` url quotes the ":" and "/" characters for more
12
compatible UTF-8 filename support in some browsers. :issue:`3074`
13
- Fixes for PEP451 import loaders and pytest 5.x. :issue:`3275`
14
+- Show message about dotenv on stderr instead of stdout. :issue:`3285`
15
16
17
Version 1.0.3
flask/cli.py
@@ -600,7 +600,7 @@ def load_dotenv(path=None):
600
click.secho(
601
' * Tip: There are .env files present.'
602
' Do "pip install python-dotenv" to use them.',
603
- fg='yellow')
+ fg='yellow', err=True)
604
return
605
606
if path is not None:
0 commit comments