Added ability to specify comma separated values for the trust anchor.
This commit is contained in:
parent
33ad8fcb36
commit
e85fe47a13
3 changed files with 17 additions and 1 deletions
|
|
@ -528,6 +528,9 @@ class CommandBase(object):
|
|||
setting.type == 'folder'):
|
||||
val_str = self.convert_val_to_str(new_dic[item])
|
||||
setting.value = val_str
|
||||
if setting.type == 'strings':
|
||||
strs = self.convert_val_to_str(new_dic[item]).split(',')
|
||||
setting.value = strs
|
||||
if setting.type == 'check':
|
||||
setting.value = new_dic[item]
|
||||
if setting.type == 'list':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue