1👍
✅
To me it looks like you’re missing a comma in the list of your INSTALLED_APPS
in settings.py
.
Could it be that it says
...,
'sites'
'cms',
...
instead of
...,
'sites',
'cms',
....
The missing comma results in sitescms
.
Source:stackexchange.com