~ubuntu-branches/ubuntu/trusty/horizon/trusty-updates

« back to all changes in this revision

Viewing changes to horizon/management/commands/startpanel.py

  • Committer: Package Import Robot
  • Author(s): Adam Gandelman
  • Date: 2013-09-06 11:59:43 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20130906115943-h3td0l7tp16mb9oc
Tags: 1:2013.2~b3-0ubuntu1
* New upstream release.
* debian/control: Minimum python-openstack-auth version >= 1.1.1.
* debian/control: Add python-troveclient.
* debian/static: Refresh static assets for 2013.2~b3.
* debian/patches: ubuntu_local_settings.patch -> ubuntu_settings.patch, also
  patch location of secret key in openstack_dashboard/settings.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
import glob
2
 
from optparse import make_option
 
2
from optparse import make_option  # noqa
3
3
import os
4
4
 
5
 
from django.core.management.base import CommandError
6
 
from django.core.management.templates import TemplateCommand
7
 
from django.utils.importlib import import_module
 
5
from django.core.management.base import CommandError  # noqa
 
6
from django.core.management.templates import TemplateCommand  # noqa
 
7
from django.utils.importlib import import_module  # noqa
8
8
 
9
9
import horizon
10
10