From 39b051346a33b75ff41625521734cbbae184be18 Mon Sep 17 00:00:00 2001 From: Chris Meyers Date: Fri, 22 May 2015 13:07:44 -0400 Subject: [PATCH] flake8 fix --- awx/api/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/api/views.py b/awx/api/views.py index 7209f058b0..287d44cad1 100644 --- a/awx/api/views.py +++ b/awx/api/views.py @@ -507,7 +507,7 @@ class OrganizationList(ListCreateAPIView): # by the license, then we are only willing to create this organization # if no organizations exist in the system. if (not feature_enabled('multiple_organizations') and - self.model.objects.filter(active=True).count() > 0): + self.model.objects.filter(active=True).count() > 0): raise LicenseForbids('Your Tower license only permits a single ' 'organization to exist.')