Files
karbor-dashboard/karbor_dashboard/protectionplans/panel.py
Andreas Jaeger 2396e14085 Update hacking for Python3
The repo is Python 3 now, so update hacking to version 3.0 which
supports Python 3.

Fix warnings found.

Change-Id: If966592a0f0d2c1000d5dc1ddafe2a3bcae88551
2020-03-31 13:08:03 +00:00

27 lines
878 B
Python

# Copyright (c) 2016 Huawei, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from django.utils.translation import ugettext_lazy as _
import horizon
from karbor_dashboard import dashboard
class ProtectionPlans(horizon.Panel):
name = _("Protection Plans")
slug = 'protectionplans'
dashboard.DataProtection.register(ProtectionPlans)