Remove unused logging

Change-Id: I70f043e92450693b3c18ce5c25da68f12d77121b
This commit is contained in:
lilintan 2016-08-31 10:57:40 +08:00
parent aba14a4ccd
commit 829a337438
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"