diff --git a/attributs.py b/attributs.py index da4adb2..a98d7fa 100644 --- a/attributs.py +++ b/attributs.py @@ -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