Forums

I need help

I have this problem. Please help me!

Thanks

2022-08-14 07:16:46,530: Error running WSGI application
2022-08-14 07:16:46,554: ModuleNotFoundError: No module named 'authentication'
2022-08-14 07:16:46,554:   File "/var/www/daartz_pythonanywhere_com_wsgi.py", line 99, in <module>
2022-08-14 07:16:46,554:     application = StaticFilesHandler(get_wsgi_application())
2022-08-14 07:16:46,554: 
2022-08-14 07:16:46,554:   File "/home/daartz/.virtualenvs/django2/lib/python3.6/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application
2022-08-14 07:16:46,555:     django.setup(set_prefix=False)
2022-08-14 07:16:46,555: 
2022-08-14 07:16:46,555:   File "/home/daartz/.virtualenvs/django2/lib/python3.6/site-packages/django/__init__.py", line 24, in setup
2022-08-14 07:16:46,555:     apps.populate(settings.INSTALLED_APPS)
2022-08-14 07:16:46,555: 
2022-08-14 07:16:46,555:   File "/home/daartz/.virtualenvs/django2/lib/python3.6/site-packages/django/apps/registry.py", line 91, in populate
2022-08-14 07:16:46,555:     app_config = AppConfig.create(entry)
2022-08-14 07:16:46,555: 
2022-08-14 07:16:46,555:   File "/home/daartz/.virtualenvs/django2/lib/python3.6/site-packages/django/apps/config.py", line 224, in create
2022-08-14 07:16:46,556:     import_module(entry)

Your web app's code tries to import authentication module, but it doesn't find it. Is it something that you're explicitly importing somewhere in your code?