We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I've noted when using a windows machine, a Unicode character is added to every value.
'OS': 'Windows_NT', 'EXAMPLE_KEY': u'EXAMPLE_VALUE'
This is using the example listed in the README.
The text was updated successfully, but these errors were encountered:
Same issue with Python 2.7 on Windows. I have this value in .env:
.env
FLASK_ENV=development
After loaded, it change to:
u'FLASK_ENV'=development
Then it cause a TypeError: environment can only contain strings. Any help?
TypeError: environment can only contain strings
Sorry, something went wrong.
@matthewshirley @greyli would you be able to provide the exact steps, so i can reproduce it. A patch is also welcomed.
I'll try to make a PR.
No branches or pull requests
I've noted when using a windows machine, a Unicode character is added to every value.
This is using the example listed in the README.
The text was updated successfully, but these errors were encountered: