Skip to content

Commit

Permalink
Updated: application to app
Browse files Browse the repository at this point in the history
  • Loading branch information
Arvind-4 committed Dec 31, 2022
1 parent c79ac92 commit 0ff434b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/asgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings')

application = get_asgi_application()
app = get_asgi_application()
2 changes: 1 addition & 1 deletion backend/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
},
]

WSGI_APPLICATION = 'backend.wsgi.application'
WSGI_APPLICATION = 'backend.wsgi.app'

# Password validation
# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators
Expand Down
2 changes: 1 addition & 1 deletion backend/wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings')

application = get_wsgi_application()
app = get_wsgi_application()

0 comments on commit 0ff434b

Please sign in to comment.