From c4ddc86fc93c2876e79c88555c11e3c28eb5069f Mon Sep 17 00:00:00 2001 From: Antoine Durand-Gasselin Date: Sun, 17 Oct 2010 16:34:16 +0200 Subject: [PATCH] [attributs] +, --- attributs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attributs.py b/attributs.py index 8ac794a..d600f56 100644 --- a/attributs.py +++ b/attributs.py @@ -404,7 +404,7 @@ class blacklist(Attr): now = time.time() self.value = { 'debut' : int (bl_debut), 'fin' : bl_fin if bl_fin == '-' else int(bl_fin), - 'type' : bl_type + 'type' : bl_type, 'comm' : bl_comm, 'actif' : int(bl_debut) < now and (bl_fin == '-' or int(bl_fin) > now) }