Skip to content

Commit

Permalink
Refactor manage.py to reflect django 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pamella committed May 22, 2024
1 parent fe5e2aa commit 0c8f714
Showing 1 changed file with 17 additions and 22 deletions.
39 changes: 17 additions & 22 deletions manage.py
Original file line number Diff line number Diff line change
@@ -1,31 +1,26 @@
#!/usr/bin/env python
"""
Django administration utility.
"""

from __future__ import absolute_import, unicode_literals

"""Django's command-line utility for administrative tasks."""
import os
import sys

PWD = os.path.abspath(os.path.dirname(__file__))

if __name__ == '__main__':
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'test_settings')

def main():
"""Run administrative tasks."""
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "test_settings")
sys.path.append(PWD)

try:
from django.core.management import execute_from_command_line # pylint: disable=wrong-import-position
except ImportError:
# The above import may fail for some other reason. Ensure that the
# issue is really that Django is missing to avoid masking other
# exceptions on Python 2.
try:
import django # pylint: disable=unused-import, wrong-import-position
except ImportError:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
)
raise
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
) from exc
execute_from_command_line(sys.argv)


if __name__ == "__main__":
main()

0 comments on commit 0c8f714

Please sign in to comment.