You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 line
298 B

  1. #!/var/www/html/ecomonde/ecomonde-venv/bin/python3
  2. # -*- coding: utf-8 -*-
  3. import re
  4. import sys
  5. from django.core.management import execute_from_command_line
  6. if __name__ == '__main__':
  7. sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
  8. sys.exit(execute_from_command_line())