Renamed SliceDeployment back to SliceDeployments
[plstackapi.git] / planetstack / model_policies / model_policy_Network.py
index 88c9f1d..f48b25a 100644 (file)
@@ -1,11 +1,11 @@
 from core.models import *
 
 def handle(network):
-       from core.models import SliceDeployment,NetworkDeployments
+       from core.models import SliceDeployments,NetworkDeployments
        from collections import defaultdict
        # network deployments are not visible to users. We must ensure
        # networks are deployed at all deploymets available to their slices.
-       slice_deployments = SliceDeployment.objects.all()
+       slice_deployments = SliceDeployments.objects.all()
        slice_deploy_lookup = defaultdict(list)
        for slice_deployment in slice_deployments:
                slice_deploy_lookup[slice_deployment.slice].append(slice_deployment.deployment)