-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
file encoding #180
Comments
Interesting. What kind of problems does this create with Heroku? |
we had a similar problem with runtime.txt, file created with gedit didn't allow for a successful push to heroku, girls got error regarding python version not supported on the cedar. Changing the file with another one solved this issue |
@MattBlack85 This particular problem is actually caused by windows line endings instead of unix ones. It can be fixed simply by only having one line in the file. |
@bmispelon sorry, I don't have the error message :/ |
As this error is not clear, I'm going to close this. Please re-open if this comes up again. |
on windows, depending in cmd or powershell is used when generating requirements.txt by running
sometimes leads to a situation where windows1250 encoding is used. that generates problems with heroku further on.
The text was updated successfully, but these errors were encountered: