This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
wcsinst/debian/manage.py

12 lines
293 B
Python
Executable File

#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
sys.path.insert(0, '/usr/lib/wcsinstd')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "debian_settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)