[Answer]-Python Django-mezzanine run failed

1πŸ‘

βœ…

It looks like the text editor you used to edit your settings.py used unicode quotes β€˜β€™, rather than the actual apostrophe '' or quote character "". It should be:

'USER': 'root',

Rather than:

'USER': \xe2\x80\x98root\xe2\x80\x99,

The easiest fix would be to copy and paste the quotes around the USER keyword, but it would be a good idea to find a text editor that uses the proper quotes required by python.

πŸ‘€GWW

Leave a comment