https://github.com/ging/horizon
Revision 80b5d642d010d5b00cc451be57e1c4f5513c7284 authored by Jenkins on 09 March 2012, 22:46:35 UTC, committed by Gerrit Code Review on 09 March 2012, 22:46:35 UTC
2 parent s 4fc2300 + fa74048
Raw File
Tip revision: 80b5d642d010d5b00cc451be57e1c4f5513c7284 authored by Jenkins on 09 March 2012, 22:46:35 UTC
Merge "Restores volume attachment list to instance details."
Tip revision: 80b5d64
manage.py
#!/usr/bin/env python

import os
import sys


if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "openstack_dashboard.settings")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)
back to top