Merge "Remove unused logging"

This commit is contained in:
Jenkins 2016-09-14 21:25:55 +00:00 committed by Gerrit Code Review
commit 2ffb6c930f
3 changed files with 0 additions and 7 deletions

View File

@ -12,7 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
import re
@ -26,9 +25,6 @@ from horizon import tables
from neutron_lbaas_dashboard import api
LOG = logging.getLogger(__name__)
class TerminateLoadBalancer(tables.BatchAction):
name = "terminate"
action_present = _("Terminate")

View File

@ -12,7 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
from django.utils.translation import ugettext_lazy as _
from horizon import exceptions
@ -23,7 +22,6 @@ from openstack_dashboard.api import nova
from neutron_lbaas_dashboard import api
LOG = logging.getLogger(__name__)
__create_new__ = "Create New"

View File

@ -16,7 +16,6 @@ from django.utils.translation import ugettext as _
from neutron_lbaas_dashboard import api
from create_lb import * # noqa
LOG = logging.getLogger(__name__)
INDEX_URL = "horizon:projects:loadbalancersv2:index"