28 Apr
2020
28 Apr
'20
8:29 p.m.
On 4/28/20 1:05 PM, Ralf Wiegand wrote:
python manage.py runserver 0.0.0.0:8000 Traceback (most recent call last): ... File "/opt/mailman/mailman-suite/mailman-suite_project/settings.py", line 286 EMAIL_HOST = ‘mail.somedomain.org’ ^ SyntaxError: invalid character in identifier
The characters in the above that look like ascii apostrophe/single-quote characters are actually unicode right-single-quote characters.
I.e., it needs to be
EMAIL_HOST = 'mail.somedomain.org'
not
EMAIL_HOST = ‘mail.somedomain.org’
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan