From 7e4f8da1ffb41fa6b8a09db47341cc8decf01e0f Mon Sep 17 00:00:00 2001 From: "ricardo.bartels@telekom.de" Date: Fri, 22 Dec 2023 16:05:13 +0100 Subject: [PATCH] removes source name from Tag description to avoid changing of tag description --- module/sources/vmware/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/sources/vmware/connection.py b/module/sources/vmware/connection.py index 3ce4afd..66757f8 100644 --- a/module/sources/vmware/connection.py +++ b/module/sources/vmware/connection.py @@ -676,7 +676,7 @@ class VMWareHandler(SourceBase): # noinspection PyBroadException try: tag_name = self.tag_session.tagging.Tag.get(tag_id).name - tag_description = f"{primary_tag_name} {self.name}: "\ + tag_description = f"{primary_tag_name}: "\ f"{self.tag_session.tagging.Tag.get(tag_id).description}" except Exception as e: log.error(f"Unable to retrieve vCenter tag '{tag_id}' for '{obj.name}': {e}")