Merge branch '1.0.x'

This commit is contained in:
David Lord 2019-07-03 12:23:16 -07:00
commit 2844fdb82e
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
2 changed files with 3 additions and 1 deletions

View file

@ -100,7 +100,8 @@ Unreleased
requires upgrading to Werkzeug 0.15.5. :issue:`3249`
- ``send_file`` url quotes the ":" and "/" characters for more
compatible UTF-8 filename support in some browsers. :issue:`3074`
- Fixes for PEP451 import loaders and pytest 5.x. :issue:`3275`
- Fixes for PEP451 import loaders and pytest 5.x. :issue:`3275`
- Show message about dotenv on stderr instead of stdout. :issue:`3285`
Version 1.0.3

View file

@ -622,6 +622,7 @@ def load_dotenv(path=None):
" * Tip: There are .env or .flaskenv files present."
' Do "pip install python-dotenv" to use them.',
fg="yellow",
err=True,
)
return False