[Django]-Django + Celery: ImportError: No module named project.urls

4👍

As stated in the comments to the question, I see that you use e.project.celery and e.project.settings in your import statements, but the error says something about not finding project.urls (there is no e. at the start).

How did you define the ROOT_URLCONF setting? Maybe that is causing the problem.

👤Ralf

Leave a comment