LowieHuyghe / edmunds-python

Edmunds is a Flask based framework for building web applications with a firm structure to start from.
https://lowiehuyghe.github.io/edmunds-python/
Apache License 2.0
4 stars 1 forks source link

SQLite database url is missing / #78

Closed LowieHuyghe closed 7 years ago

LowieHuyghe commented 7 years ago

instance_database_uri = 'sqlite://%s' % sqlite_path

should be

instance_database_uri = 'sqlite:///%s' % sqlite_path

LowieHuyghe commented 7 years ago

Done