summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/project/routers/views.py
diff options
context:
space:
mode:
authorlawrancejing <lawrancejing@gmail.com>2013-09-26 02:32:41 -0700
committerlawrancejing <lawrancejing@gmail.com>2013-09-28 23:57:13 -0700
commitd33f294ba960c03d3cdbf595a6d36da20618977a (patch)
treef660eb34e09ea90af2a68743185826ae69edb1f2 /openstack_dashboard/dashboards/project/routers/views.py
parentffdf190825a2b76f31df5317b6d8c44dd993d96e (diff)
downloadhorizon-d33f294ba960c03d3cdbf595a6d36da20618977a.tar.gz
Remove unused LOG
In some files, we import logging and define LOG, but we never used it later, so i remove those unused LOG and make horizon code clean. Fixed: bug #1231761 Change-Id: I1ebf0098c647e7522f5f1a93cfece7a52bdc05c1
Diffstat (limited to 'openstack_dashboard/dashboards/project/routers/views.py')
-rw-r--r--openstack_dashboard/dashboards/project/routers/views.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/openstack_dashboard/dashboards/project/routers/views.py b/openstack_dashboard/dashboards/project/routers/views.py
index 4ccd8dc02..9a2b744d7 100644
--- a/openstack_dashboard/dashboards/project/routers/views.py
+++ b/openstack_dashboard/dashboards/project/routers/views.py
@@ -18,8 +18,6 @@
Views for managing Neutron Routers.
"""
-import logging
-
from django.core.urlresolvers import reverse_lazy # noqa
from django.utils.datastructures import SortedDict # noqa
from django.utils.translation import ugettext_lazy as _ # noqa
@@ -37,9 +35,6 @@ from openstack_dashboard.dashboards.project.routers \
import tables as project_tables
-LOG = logging.getLogger(__name__)
-
-
class IndexView(tables.DataTableView):
table_class = project_tables.RoutersTable
template_name = 'project/routers/index.html'