From 37620c753acf540e3c16364419617ebeb0388c5b Mon Sep 17 00:00:00 2001 From: Parker Berberian Date: Wed, 30 Jan 2019 13:40:15 -0500 Subject: Fixed all Flake8 errors Change-Id: I1186429df8989461e2384f1f3e533c55cebfb1b4 Signed-off-by: Parker Berberian --- src/dashboard/tasks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/dashboard/tasks.py') diff --git a/src/dashboard/tasks.py b/src/dashboard/tasks.py index 837e7a1..597629f 100644 --- a/src/dashboard/tasks.py +++ b/src/dashboard/tasks.py @@ -11,7 +11,6 @@ from celery import shared_task from django.utils import timezone -from django.db.models import Q from booking.models import Booking from notifier.manager import NotificationHandler from api.models import Job, JobStatus, SoftwareRelation, HostHardwareRelation, HostNetworkRelation, AccessRelation @@ -41,7 +40,7 @@ def booking_poll(): if vlan.public: try: host.lab.vlan_manager.release_public_vlan(vlan.vlan_id) - except: # will fail if we already released in this loop + except Exception: # will fail if we already released in this loop pass else: vlans.append(vlan.vlan_id) -- cgit 1.2.3-korg