polls/views is as follows:
from django.shortcuts import render
# Create your views here.
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello, world. You're at the polls index.")
this is the full exception:
Exception in thread django-main-thread:
Traceback (most recent call last):
File "C:\Users\me\anaconda3\envs\mynewenv\lib\site-packages\django\urls\resolvers.py", line 740, in url_patterns
iter(patterns)
TypeError: 'module' object is not iterable
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "C:\Users\me\anaconda3\envs\mynewenv\lib\threading.py", line 1016, in _bootstrap_inner
self.run()
File "C:\Users\me\anaconda3\envs\mynewenv\lib\threading.py", line 953, in run
self._target(*self._args, **self._kwargs)
File "C:\Users\me\anaconda3\envs\mynewenv\lib\site-packages\django\utils\autoreload.py", line 64, in wrapper
fn(*args, **kwargs)
File "C:\Users\me\anaconda3\envs\mynewenv\lib\site-packages\django\core\management\commands\runserver.py", line 133, in inner_run
self.check(display_num_errors=True)
File "C:\Users\me\anaconda3\envs\mynewenv\lib\site-packages\django\core\management\base.py", line 486, in check
all_issues = checks.run_checks(
File "C:\Users\me\anaconda3\envs\mynewenv\lib\site-packages\django\core\checks\registry.py", line 88, in run_checks
new_errors = check(app_configs=app_configs, databases=databases)
File "C:\Users\me\anaconda3\envs\mynewenv\lib\site-packages\django\core\checks\urls.py", line 14, in check_url_config
return check_resolver(resolver)
File "C:\Users\me\anaconda3\envs\mynewenv\lib\site-packages\django\core\checks\urls.py", line 24, in check_resolver
return check_method()
File "C:\Users\me\anaconda3\envs\mynewenv\lib\site-packages\django\urls\resolvers.py", line 520, in check
messages.extend(check_resolver(pattern))
File "C:\Users\me\anaconda3\envs\mynewenv\lib\site-packages\django\core\checks\urls.py", line 24, in check_resolver
return check_method()
File "C:\Users\me\anaconda3\envs\mynewenv\lib\site-packages\django\urls\resolvers.py", line 519, in check
for pattern in self.url_patterns:
File "C:\Users\me\anaconda3\envs\mynewenv\lib\site-packages\django\utils\functional.py", line 47, in __get__
res = instance.__dict__[self.name] = self.func(instance)
File "C:\Users\me\anaconda3\envs\mynewenv\lib\site-packages\django\urls\resolvers.py", line 748, in url_patterns
raise ImproperlyConfigured(msg.format(name=self.urlconf_name)) from e
django.core.exceptions.ImproperlyConfigured: The included URLconf '<module 'polls.urls' from 'C:\\Users\\me\\Desktop\\Personal\\Django\\mysite\\polls\\urls.py'>' 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.
I have a hunch its from this line
from . import views
which location does the ‘.’ refer to in this case?