Merge "Fix manage.py for the default case"

This commit is contained in:
Zuul 2022-06-16 05:43:23 +00:00 committed by Gerrit Code Review
commit f19d063252
1 changed files with 1 additions and 1 deletions

View File

@ -18,6 +18,6 @@ import sys
if __name__ == "__main__":
os.environ.setdefault(
"DJANGO_SETTINGS_MODULE", "designatedashboard.settings")
"DJANGO_SETTINGS_MODULE", "openstack_dashboard.settings")
from django.core.management import execute_from_command_line # noqa
execute_from_command_line(sys.argv)