From 1e93fdcceaa57c74cdbb0f6bb1a1b967fe4d808a Mon Sep 17 00:00:00 2001 From: chove Date: Thu, 23 Feb 2006 18:48:04 +0100 Subject: [PATCH] ajout de la couleur cyan dans la liste des adhrents pour les machines wifi (modif propose par Foustala) darcs-hash:20060223174804-4ec08-a43c9c7034420acf414bd0bfb562c0b11f0d9884.gz --- gestion/whos.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gestion/whos.py b/gestion/whos.py index 2ba37a0f..af401e48 100755 --- a/gestion/whos.py +++ b/gestion/whos.py @@ -131,6 +131,7 @@ def adhers_brief(adhers) : for machine in a.machines() : nom = machine.nom().split('.')[0] if machine.blacklist_actif() : k = 'rouge' + elif machine.ipsec() : k = 'cyan' else : k= '' if machines : machines += ', ' + coul(nom,k) else : machines = coul(nom,k)