Re: Trouble after create a pool

2020-02-14 Thread Rodrigo Silva

>
> I got it!
>

There were a typing error.

Thank you!  

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/fd986cc1-fa91-468b-854c-019ae4563c47%40googlegroups.com.


Trouble after create a pool

2020-02-13 Thread Rodrigo Silva
   Hi, I'm starting in django and learning about the tutorials.
After I have been created and set up, when I run the server the shell show 
me a error

Someone can help me? Than you!

C:\Users\carva\mysite>python manage.py runserver
Watching for file changes with StatReloader
Performing system checks...

Exception in thread django-main-thread:
Traceback (most recent call last):
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\threading.py", 
line 932, in _bootstrap_inner
self.run()
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\threading.py", 
line 870, in run
self._target(*self._args, **self._kwargs)
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\utils\autoreload.py",
 
line 53, in wrapper
fn(*args, **kwargs)
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\core\management\commands\runserver.py",
 
line 117, in inner_run
self.check(display_num_errors=True)
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\core\management\base.py",
 
line 392, in check
all_issues = self._run_checks(
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\core\management\base.py",
 
line 382, in _run_checks
return checks.run_checks(**kwargs)
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\core\checks\registry.py",
 
line 72, in run_checks
new_errors = check(app_configs=app_configs)
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\core\checks\urls.py",
 
line 13, in check_url_config
return check_resolver(resolver)
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\core\checks\urls.py",
 
line 23, in check_resolver
return check_method()
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\urls\resolvers.py",
 
line 407, in check
for pattern in self.url_patterns:
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\utils\functional.py",
 
line 48, in __get__
res = instance.__dict__[self.name] = self.func(instance)
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\urls\resolvers.py",
 
line 588, in url_patterns
patterns = getattr(self.urlconf_module, "urlpatterns", 
self.urlconf_module)
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\utils\functional.py",
 
line 48, in __get__
res = instance.__dict__[self.name] = self.func(instance)
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\urls\resolvers.py",
 
line 581, in urlconf_module
return import_module(self.urlconf_name)
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\importlib\__init__.py",
 
line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
  File "", line 1014, in _gcd_import
  File "", line 991, in _find_and_load
  File "", line 975, in _find_and_load_unlocked
  File "", line 671, in _load_unlocked
  File "", line 783, in exec_module
  File "", line 219, in 
_call_with_frames_removed
  File "C:\Users\carva\mysite\mysite\urls.py", line 20, in 
path('pools/', include('pools.urls')),
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\urls\conf.py",
 
line 34, in include
urlconf_module = import_module(urlconf_module)
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\importlib\__init__.py",
 
line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
  File "", line 1014, in _gcd_import
  File "", line 991, in _find_and_load
  File "", line 961, in _find_and_load_unlocked
  File "", line 219, in 
_call_with_frames_removed
  File "", line 1014, in _gcd_import
  File "", line 991, in _find_and_load
  File "", line 973, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'pools'
Traceback (most recent call last):
  File "manage.py", line 21, in 
main()
  File "manage.py", line 17, in main
execute_from_command_line(sys.argv)
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\core\management\__init__.py",
 
line 401, in execute_from_command_line
utility.execute()
  File 
"C:\Users\carva\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django-3.0.3-py3.8.egg\django\core\management\__init__.py",
 
line 395, in execute