[attributs/hostCert] join veut absoluement des strings
This commit is contained in:
parent
43f4ba650a
commit
f6620a2643
1 changed files with 1 additions and 1 deletions
|
@ -1505,5 +1505,5 @@ class hostCert(dnsAttr):
|
|||
|
||||
def parse_value(self, host):
|
||||
if not host in self.parent.machine()['host'] + self.parent.machine()['hostAlias']:
|
||||
raise ValueError("hostCert doit être inclus dans les host et hostAlias de la machine parente : %s" % ', '.join(self.parent.machine()['host'] + self.parent.machine()['hostAlias']))
|
||||
raise ValueError("hostCert doit être inclus dans les host et hostAlias de la machine parente : %s" % ', '.join(str(item) for item in self.parent.machine()['host'] + self.parent.machine()['hostAlias']))
|
||||
self.value = host
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue