After some changes in my repo and deploy to heroku I am receiving the following error:
ImportError: No module named site
I not have idea what can cause the p
Take a look at your Procfile. It should show something like this:
web: gunicorn site:app
Make sure site is the name of your app.
site