Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ivan-vilches/f583a62b4a65d267b7c7b715e93d6a5a to your computer and use it in GitHub Desktop.
Save ivan-vilches/f583a62b4a65d267b7c7b715e93d6a5a to your computer and use it in GitHub Desktop.
error
byexample) λ python manage.py runserver
Watching for file changes with StatReloader
Performing system checks...
System check identified no issues (0 silenced).
April 21, 2019 - 01:37:16
Django version 2.2, using settings 'mysite.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
[21/Apr/2019 01:37:18] "GET /admin/ HTTP/1.1" 200 4033
[21/Apr/2019 01:37:19] "GET /static/admin/css/base.css HTTP/1.1" 304 0 [21/Apr/2019 01:37:19] "GET /static/admin/css/dashboard.css HTTP/1.1" 304 0
[21/Apr/2019 01:37:19] "GET /static/admin/css/responsive.css HTTP/1.1" 304 0
[21/Apr/2019 01:37:19] "GET /static/admin/css/fonts.css HTTP/1.1" 304 0 [21/Apr/2019 01:37:19] "GET /static/admin/img/icon-addlink.svg HTTP/1.1" 304 0
[21/Apr/2019 01:37:19] "GET /static/admin/img/icon-changelink.svg HTTP/1.1" 304 0
[21/Apr/2019 01:37:19] "GET /static/admin/fonts/Roboto-Light-webfont.woff HTTP/1.1" 304 0 [21/Apr/2019 01:37:19] "GET /static/admin/fonts/Roboto-Bold-webfont.woff HTTP/1.1" 304 0
[21/Apr/2019 01:37:19] "GET /static/admin/fonts/Roboto-Regular-webfont.woff HTTP/1.1" 304 0
C:\Users\StarLord\Documents\django\byexample\byexample\mysite\blog\admin.py changed, reloading. Watching for file changes with StatReloader
Exception in thread Thread-1:
Traceback (most recent call last): File "c:\users\starlord\appdata\local\programs\python\python37-32\Lib\threading.py", line 917, in _bootstrap_inner
self.run() File "c:\users\starlord\appdata\local\programs\python\python37-32\Lib\threading.py", line 865, in run
self._target(*self._args, **self._kwargs) File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\utils\autoreload.py", line 54, in wrapper
fn(*args, **kwargs) File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\core\management\commands\runserver.py", line 109, in inner_run
autoreload.raise_last_exception() File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\utils\autoreload.py", line 77, in raise_last_exception
raise _exception[0](_exception[1]).with_traceback(_exception[2]) File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\utils\autoreload.py", line 54, in wrapper
fn(*args, **kwargs)
File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\__init__.py", line 24, in setup
apps.populate(settings.INSTALLED_APPS)
File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\apps\registry.py", line 122, in populate
app_config.ready()
File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\contrib\admin\apps.py", line 24, in ready
self.module.autodiscover()
File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\contrib\admin\__init__.py", line 26, in autodiscover
autodiscover_modules('admin', register_to=site)
File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\utils\module_loading.py", line 47, in autodiscover_modules
import_module('%s.%s' % (app_config.name, module_to_search))
File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\importlib\__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1006, in _gcd_import File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 677, in _load_unlocked File "<frozen importlib._bootstrap_external>", line 724, in exec_module
File "<frozen importlib._bootstrap_external>", line 860, in get_code
File "<frozen importlib._bootstrap_external>", line 791, in source_to_code File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "<string>", line None
IndentationError: unexpected indent (admin.py, line 10)
Traceback (most recent call last):
File "manage.py", line 21, in <module> main()
File "manage.py", line 17, in main execute_from_command_line(sys.argv)
File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\core\management\__init__.py", line 381, in execute_from_command_line
utility.execute() File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\core\management\__init__.py", line 375, in execute
self.fetch_command(subcommand).run_from_argv(self.argv) File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\core\management\base.py", line 323, in run_from_argv
self.execute(*args, **cmd_options) File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\core\management\commands\runserver.py", line 60, in execute
super().execute(*args, **options) File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\core\management\base.py", line 364, in execute
output = self.handle(*args, **options) File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\core\management\commands\runserver.py", line 95, in handle
self.run(**options) File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\core\management\commands\runserver.py", line 102, in run
autoreload.run_with_reloader(self.inner_run, **options) File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\utils\autoreload.py", line 579, in run_with_reloader
start_django(reloader, main_func, *args, **kwargs) File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\utils\autoreload.py", line 564, in start_django
reloader.run(django_main_thread) File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\utils\autoreload.py", line 275, in run
self.run_loop() File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\utils\autoreload.py", line 281, in run_loop
next(ticker) File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\utils\autoreload.py", line 321, in tick
state.update(self.loop_files(state, previous_timestamp)) File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\utils\autoreload.py", line 328, in loop_files
for path, mtime in self.snapshot_files(): File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\utils\autoreload.py", line 348, in snapshot_files
for file in self.watched_files():
File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\utils\autoreload.py", line 241, in watched_files
yield from iter_all_python_module_files()
File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\utils\autoreload.py", line 103, in iter_all_python_module_files
return iter_modules_and_files(modules, frozenset(_error_files))
File "C:\Users\StarLord\Documents\django\byexample\byexample\lib\site-packages\django\utils\autoreload.py", line 128, in iter_modules_and_files
if not path.exists():
File "c:\users\starlord\appdata\local\programs\python\python37-32\Lib\pathlib.py", line 1339, in exists
self.stat()
File "c:\users\starlord\appdata\local\programs\python\python37-32\Lib\pathlib.py", line 1161, in stat
return self._accessor.stat(self)
OSError: [WinError 123] El nombre de archivo, el nombre de directorio o la sintaxis de la etiqueta del volumen no son correctos: '<frozen importlib._bootstrap>'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment