From 261c294690427b57d111c777cdc4d13b9c84f9d2 Mon Sep 17 00:00:00 2001 From: Qian Min Chen Date: Thu, 19 Jul 2018 18:12:24 +0800 Subject: [PATCH] Delete the unused LOG code Change-Id: Ief253cdd226f8c2688429b0ff00785151a99759b --- cloudkittydashboard/dashboards/admin/modules/forms.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cloudkittydashboard/dashboards/admin/modules/forms.py b/cloudkittydashboard/dashboards/admin/modules/forms.py index ad08dbd..df80933 100644 --- a/cloudkittydashboard/dashboards/admin/modules/forms.py +++ b/cloudkittydashboard/dashboards/admin/modules/forms.py @@ -12,15 +12,11 @@ # 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 forms from cloudkittydashboard.api import cloudkitty as api -LOG = logging.getLogger(__name__) - class EditPriorityForm(forms.SelfHandlingForm): priority = forms.IntegerField(label=_("Priority"), required=True)