Fix PEP8 issues.

Fix some pep8 issues in manage.py make the code looks pretty.

Change-Id: I0e02ed538dbef9ab41a3c698e94ac56e4afc018e
This commit is contained in:
lrqrun 2012-08-29 15:34:24 +08:00
parent b177299953
commit 9c77ce0fa9
1 changed files with 3 additions and 4 deletions

View File

@ -3,10 +3,9 @@
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")
from django.core.management import execute_from_command_line
os.environ.setdefault("DJANGO_SETTINGS_MODULE",
"openstack_dashboard.settings")
execute_from_command_line(sys.argv)