I am getting this error when I am trying push my files into heroku rep.
Ive set autocrlf = false already in gitconfig but this problem is still there. i have also tr
I was getting this error because I added a line to my requirements.txt file that had an error:
simplejson=2.6.2
There was only one = and there should be two:
=
simplejson==2.6.2
Correcting this fixed the error.