We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 950286e commit 3d57c82Copy full SHA for 3d57c82
plugins/modules/dcnm_child_fabric.py
@@ -162,8 +162,9 @@ def verify_parent_fab_exists_in_controller(self):
162
if fabric == item["destFabric"]:
163
break
164
else:
165
+ invalid_fab = item["destFabric"]
166
msg = f"{self.class_name}: {method_name}: "
- msg += f"Playbook configuration for FABRIC_NAME {item["destFabric"]} "
167
+ msg += f"Playbook configuration for FABRIC_NAME {invalid_fab} "
168
msg += "is not found in Controller. Please create and try again"
169
raise ValueError(msg)
170
0 commit comments