I work with python and git in a simple Turbogears2 project that I created for fun. At some point I want to deploy it to Heroku, so I do the usual pip freeze > requirements.txt , and I get this error:
Error when trying to get requirement for VCS system Command /usr/bin/git config remote.origin.url failed with error code 1 in /home/ricardo/myprojs/hellotg22/example, falling back to uneditable format
And in the requirements.txt that it creates, indicated between all the dependencies, I find this line that does not look good:
... decorator==3.4.0
Does anyone know what the problem is?
In any case, I managed to get the requirements.txt file, but I would like to know what happens with this error.
source share