fuel-devops/manage.py
Alexey Stepanov 99cd80fe46 Django 1.8
Migrate from 1.6 to community selected:
    1.8<= vesion < 1.9
Version 1.8 is LTS

On driver load:
    'devops.driver.libvirt.libvirt_driver' has been marked as
    deprecated and renamed to 'devops.driver.libvirt'

Closes-bug: #1373381
blueprint fuel-qa-python3-compatibility

Change-Id: I38c99db5f4dc53c56c4dd22ed679ca1f01979848
2016-04-25 18:52:38 +03:00

11 lines
249 B
Python
Executable File

#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "devops.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)