Merge "TrivialFix: Remove logging import unused"
This commit is contained in:
commit
0ac460f322
@ -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"
|
||||
|
@ -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"]
|
||||
|
||||
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user