From 1dc4d739c313d09fc5d0a61c170f29e00a8a5904 Mon Sep 17 00:00:00 2001 From: chove Date: Mon, 11 Apr 2005 22:03:57 +0200 Subject: [PATCH] affichage des exemptations darcs-hash:20050411200357-4ec08-8e44a3e65eb7acc6a5a26e809dfa9b9dd9568c00.gz --- gestion/whos.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gestion/whos.py b/gestion/whos.py index 5f7ac1fc..c60d430a 100755 --- a/gestion/whos.py +++ b/gestion/whos.py @@ -489,7 +489,11 @@ def machine_details(machine) : f += coul(u'Ports UDP ouvert ext->machine : ','gras') + machine.portUDPin() + '\n' if machine.portUDPout() : f += coul(u'Ports UDP ouvert machine->ext : ','gras') + machine.portUDPout() + '\n' - + + # Exemption d'upload + if machine.exempt() : + f += coul(u'Upload exempté vers : ','gras') + ', '.join(machine.exempt()) + '\n' + f += _blacklist(machine) f += _info(machine) f += _hist(machine)