When I deploy my app with sqlite3 database, Heroku gives me this error:
I am sure that problem is not with path. Code works correct on my computer every time when I create or open database.
All works correct only if instead:
self.conn = conn = sqlite3.connect(settings.DATABASE_PATH)
I write:
self.conn = conn = sqlite3.connect("guilds")
Another paths don't work, but in this case database guilds creates in folder with main file
Is it Heroku troubles?