Skip to content

Commit a166fc4

Browse files
committed
converts custom_attribute_exclude to list during parsing #317
1 parent 5b15103 commit a166fc4

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

module/sources/vmware/config.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,12 @@ def validate_options(self):
505505

506506
option.set_value(value_list)
507507

508+
if option.key == "custom_attribute_exclude":
509+
510+
option.set_value(quoted_split(option.value))
511+
512+
continue
513+
508514
permitted_subnets_option = self.get_option_by_name("permitted_subnets")
509515

510516
if permitted_subnets_option is not None:

0 commit comments

Comments
 (0)