xxxxxxxxxx
# change the drivername in the dictionary that stores your database details
# from postgres to postgresql like in the example below
# From something like this
DATABASE = {
'drivername': 'postgres',
'host': 'localhost',
'port': '5432',
'username': 'your_username',
'password': 'your_password',
'database': 'db_name'
}
# to
DATABASE = {
'drivername': 'postgresql',
'host': 'localhost',
'port': '5432',
'username': 'your_username',
'password': 'your_password',
'database': 'db_name'
}