9c77ce0fa9
Fix some pep8 issues in manage.py make the code looks pretty. Change-Id: I0e02ed538dbef9ab41a3c698e94ac56e4afc018e
12 lines
284 B
Python
Executable File
12 lines
284 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
if __name__ == "__main__":
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE",
|
|
"openstack_dashboard.settings")
|
|
execute_from_command_line(sys.argv)
|