https://github.com/ging/horizon
Revision bdfb56ae6599abfe584af90a1fd573f3b49c6959 authored by David Lyle on 27 September 2013, 22:43:46 UTC, committed by David Lyle on 27 September 2013, 22:57:10 UTC
Change-Id: I125f6c81235c6a1519044dd6145636693530277c
Closes-bug: #1220778
1 parent 9d41eba
Raw File
Tip revision: bdfb56ae6599abfe584af90a1fd573f3b49c6959 authored by David Lyle on 27 September 2013, 22:43:46 UTC
Cleaning up policy documentation
Tip revision: bdfb56a
manage.py
#!/usr/bin/env python

import os
import sys

from django.core.management import execute_from_command_line  # noqa

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE",
                          "openstack_dashboard.settings")
    execute_from_command_line(sys.argv)
back to top