Added ability to specify comma separated values for the trust anchor.

This commit is contained in:
Joey Payne 2015-09-27 13:13:32 -06:00
commit e85fe47a13
3 changed files with 17 additions and 1 deletions

View file

@ -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':