[Fixed]-Django-cms ImportError: No module named sitescms

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.

Leave a comment