From 6f2a354b6e2387b754ea4ef0b116ac0106444066 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Thu, 11 Dec 2014 13:25:15 -0500 Subject: [PATCH] Wrong base class for Custom Inventory Scripts --- awx/main/models/inventory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/models/inventory.py b/awx/main/models/inventory.py index 5a5980bfb3..3df25170ac 100644 --- a/awx/main/models/inventory.py +++ b/awx/main/models/inventory.py @@ -1234,7 +1234,7 @@ class InventoryUpdate(UnifiedJob, InventorySourceOptions): def task_impact(self): return 50 -class CustomInventoryScript(CommonModel): +class CustomInventoryScript(CommonModelNameNotUnique): class Meta: app_label = 'main'