Remove unused LOG

The LOG handler is imported but unused, this patch is to remove the
redundant code.

Change-Id: I4a2f8ca2aa8ef3d9ac45775fa54c3e6224203f9d
This commit is contained in:
Bin Zhou 2016-07-09 14:50:19 +08:00
parent a5b4650816
commit 96aa8e48b3
3 changed files with 0 additions and 11 deletions

View File

@ -17,11 +17,8 @@
# limitations under the License.
#
import logging
import os
LOG = logging.getLogger(__name__)
from selenium.common import exceptions
from selenium.webdriver.common import by
from selenium.webdriver.common import desired_capabilities as dc

View File

@ -12,8 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
from django.core.urlresolvers import reverse
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import ungettext_lazy
@ -22,8 +20,6 @@ from horizon import tables
from openstack_dashboard import api
from openstack_dashboard import policy
LOG = logging.getLogger(__name__)
class AddProtocol(policy.PolicyTargetMixin, tables.LinkAction):
name = "create"

View File

@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
from django.core.urlresolvers import reverse
from django.utils.translation import ugettext_lazy as _
@ -23,8 +21,6 @@ from horizon import forms
from openstack_dashboard.dashboards.project.networks.ports.extensions.\
allowed_address_pairs import forms as addr_pairs_forms
LOG = logging.getLogger(__name__)
class AddAllowedAddressPair(forms.ModalFormView):
form_class = addr_pairs_forms.AddAllowedAddressPairForm