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
Source:stackexchange.com