Skip to content

Commit

Permalink
fix: lms.startup -> django.setup (#1202)
Browse files Browse the repository at this point in the history
lms/startup.py performs no logic other than setting up
django, so it is being removed upstream:
openedx/edx-platform#36302
  • Loading branch information
kdmccormick authored Mar 3, 2025
1 parent 4e11796 commit 131feab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutor/templates/build/openedx/bin/site-configuration
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#! /usr/bin/env python3
import argparse
import lms.startup
import django

lms.startup.run()
django.setup()

from django.conf import settings
from django.contrib.sites.models import Site
Expand Down

0 comments on commit 131feab

Please sign in to comment.