[Django]-Django – 'module' object is not callable

25👍

✅

Change

from django.conf.urls import static

to

from django.conf.urls.static import static

and you’re good to go.

-1👍

from django.conf.urls.static import static

write this line, Instead of

from django.conf.urls import static

Leave a comment