diff --git a/watcher_dashboard/content/actions/views.py b/watcher_dashboard/content/actions/views.py index 9e39517..d2e19ce 100644 --- a/watcher_dashboard/content/actions/views.py +++ b/watcher_dashboard/content/actions/views.py @@ -14,7 +14,6 @@ # limitations under the License. import collections -import logging from django.utils.translation import ugettext_lazy as _ import horizon.exceptions @@ -27,8 +26,6 @@ from watcher_dashboard.api import watcher from watcher_dashboard.content.actions import tables from watcher_dashboard.content.actions import tabs as wtabs -LOG = logging.getLogger(__name__) - class IndexView(horizon.tables.DataTableView): table_class = tables.ActionsTable diff --git a/watcher_dashboard/content/audit_templates/tests.py b/watcher_dashboard/content/audit_templates/tests.py index ebe72c9..2ee72a9 100644 --- a/watcher_dashboard/content/audit_templates/tests.py +++ b/watcher_dashboard/content/audit_templates/tests.py @@ -13,8 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -import logging - from django.core import urlresolvers from django import http from mox3.mox import IsA # noqa @@ -22,8 +20,6 @@ from mox3.mox import IsA # noqa from watcher_dashboard import api from watcher_dashboard.test import helpers as test -LOG = logging.getLogger(__name__) - INDEX_URL = urlresolvers.reverse( 'horizon:admin:audit_templates:index') CREATE_URL = urlresolvers.reverse( diff --git a/watcher_dashboard/content/audits/tables.py b/watcher_dashboard/content/audits/tables.py index 6cfc577..b1cbe71 100644 --- a/watcher_dashboard/content/audits/tables.py +++ b/watcher_dashboard/content/audits/tables.py @@ -13,8 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -import logging - from django.core import urlresolvers from django import shortcuts from django.template.defaultfilters import title # noqa @@ -28,8 +26,6 @@ from horizon.utils import filters from watcher_dashboard.api import watcher -LOG = logging.getLogger(__name__) - AUDIT_STATE_DISPLAY_CHOICES = ( ("NO STATE", pgettext_lazy("State of an audit", u"No State")), ("ONGOING", pgettext_lazy("State of an audit", u"On Going")), diff --git a/watcher_dashboard/content/goals/tests.py b/watcher_dashboard/content/goals/tests.py index 1214e7c..ea83248 100644 --- a/watcher_dashboard/content/goals/tests.py +++ b/watcher_dashboard/content/goals/tests.py @@ -13,8 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -import logging - from django.core import urlresolvers from django import http from mox3.mox import IsA # noqa @@ -22,8 +20,6 @@ from mox3.mox import IsA # noqa from watcher_dashboard import api from watcher_dashboard.test import helpers as test -LOG = logging.getLogger(__name__) - INDEX_URL = urlresolvers.reverse('horizon:admin:goals:index') DETAILS_VIEW = 'horizon:admin:goals:detail' diff --git a/watcher_dashboard/content/strategies/tests.py b/watcher_dashboard/content/strategies/tests.py index 9ead81b..42e5d8f 100644 --- a/watcher_dashboard/content/strategies/tests.py +++ b/watcher_dashboard/content/strategies/tests.py @@ -13,8 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -import logging - from django.core import urlresolvers from django import http from mox3.mox import IsA # noqa @@ -22,8 +20,6 @@ from mox3.mox import IsA # noqa from watcher_dashboard import api from watcher_dashboard.test import helpers as test -LOG = logging.getLogger(__name__) - INDEX_URL = urlresolvers.reverse( 'horizon:admin:strategies:index') DETAILS_VIEW = 'horizon:admin:strategies:detail'