DjangoでTwitterクローン作成中です。
OS:Windows
フロンド部分を実装したあと、サーバーを立ち上げようとするとエラーがでました。
発生している問題・エラーメッセージ
python manage.py runserver Traceback (most recent call last): File "manage.py", line 21, in <module> main() File "manage.py", line 10, in main from django.core.management import execute_from_command_line File "C:\Users\名前\AppData\Local\Programs\Python\Python38\lib\site-packages\django\core\management\__init__.py", line 14, in <module> from django.core.management.base import ( File "C:\Users\名前\AppData\Local\Programs\Python\Python38\lib\site-packages\django\core\management\base.py", line 11, in <module> from django.core import checks File "C:\Users\名前\AppData\Local\Programs\Python\Python38\lib\site-packages\django\core\checks\__init__.py", line 15, in <module> import django.core.checks.translation # NOQA isort:skip File "C:\Users\名前\AppData\Local\Programs\Python\Python38\lib\site-packages\django\core\checks\translation.py", line 2, in <module> from django.utils.translation import get_supported_language_variant File "C:\Users\名前\AppData\Local\Programs\Python\Python38\lib\site-packages\django\utils\translation\__init__.py", line 9, in <module> from django.utils.autoreload import autoreload_started, file_changed File "C:\Users\名前\AppData\Local\Programs\Python\Python38\lib\site-packages\django\utils\autoreload.py", line 211 args += sys.argv[1:] ^ IndentationError: unexpected indent
autoreload.py
args = [sys.executable] + ['-W%s' % o for o in sys.warnoptions] # The server was started with `python -m django runserver`. args += ['-m', 'django'] args += sys.argv[1:] else: args += sys.argv return args
インデントエラーなのでどこかずれているのかとチェックしましたが不明です。
どの部分のソースコードをここに載せたらよいか含めご教授いただければと思います。
よろしくお願いいたします。
回答2件
あなたの回答
tips
プレビュー