Merge "TrivialFix: Remove logging import unused"

This commit is contained in:
Jenkins 2016-11-18 12:07:48 +00:00 committed by Gerrit Code Review
commit 0ac460f322
4 changed files with 0 additions and 15 deletions

View File

@ -14,8 +14,6 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
from django.core import urlresolvers
from django.http import HttpResponse
from django.utils.translation import ugettext_lazy as _ # noqa
@ -25,8 +23,6 @@ from horizon import tables
from monitoring.alarmdefs import constants
from monitoring import api
LOG = logging.getLogger(__name__)
class CreateAlarm(tables.LinkAction):
name = "create_alarm"

View File

@ -16,7 +16,6 @@
# under the License.
import json
import logging
from django.conf import settings
from django.core import urlresolvers
@ -32,9 +31,6 @@ from monitoring.overview import constants as ov_constants
from monitoring import api
LOG = logging.getLogger(__name__)
STATUS = ["OK", "WARNING", "CRITICAL", "UNKNOWN"]

View File

@ -14,8 +14,6 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
from django.core import urlresolvers
from django.utils.translation import ugettext_lazy as _ # noqa
@ -25,8 +23,6 @@ from horizon import tables
from monitoring import api
from monitoring.notifications import constants
LOG = logging.getLogger(__name__)
class DeleteNotification(tables.DeleteAction):
name = "delete_notification"

View File

@ -14,8 +14,6 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
from django.contrib import messages
from django.core.paginator import Paginator, EmptyPage
from django.core.urlresolvers import reverse_lazy, reverse # noqa
@ -32,7 +30,6 @@ from monitoring import api
from openstack_dashboard import policy
LOG = logging.getLogger(__name__)
LIMIT = 10
PREV_PAGE_LIMIT = 100