From f6620a2643b14fd2f55794520bba1211d582d4f0 Mon Sep 17 00:00:00 2001 From: Valentin Samir Date: Sat, 22 Feb 2014 23:14:27 +0100 Subject: [PATCH] [attributs/hostCert] join veut absoluement des strings --- attributs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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