The included URLconf 'scribimus.urls' does not appear to have any patterns in it

[Help]

raise ImproperlyConfigured(msg.format(name=self.urlconf_name)) from e

django.core.exceptions.ImproperlyConfigured: The included URLconf ‘scribimus.urls’ does not appear to have any patterns in it. If you see the ‘urlpatterns’ variable with valid patterns in the file then the issue is probably caused by a circular import.

Code :

urlpatterns=[
path(r’^members’, include(‘apps.member.urls’, namespace=‘members’))
]

Side note: When posting code (or errors, tracebacks, templates, etc) here, enclose it between lines of 3 backtick - ` characters. This means that you’ll have a line of ```, then your code, then another line of ```.

Please describe the layout of your project in more detail. Specifically focus on your directory structure.

  • What is your BASE_DIR?
  • What directories are in that BASE_DIR?
  • How many urls.py files do you have?
  • Where are those urls.py files located?
  • What is your ROOT_URLCONF setting?

You show one entry from a urlpatterns list from a file. What file is that in? Can you post that complete file?