From ba9dbf123eb504549b6d4169f2287b332323ba62 Mon Sep 17 00:00:00 2001 From: bernat Date: Sat, 16 Oct 2004 10:57:22 +0200 Subject: [PATCH] Pour le wifi, on affiche aussi le nom du proprio darcs-hash:20041016085722-d1718-9b11dc74417f9bf9a21f8ee9e29efe888d6c9dc3.gz --- gestion/whos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gestion/whos.py b/gestion/whos.py index 4f46232f..5b9de9a3 100755 --- a/gestion/whos.py +++ b/gestion/whos.py @@ -438,7 +438,7 @@ def machine_details(machine) : if not res: client_nom = '????' else: - client_nom = ", ".join([x.nom() for x in res]) + client_nom = ", ".join(["%s [%s]" % (x.nom(), x.proprietaire().Nom()) for x in res]) f += u'\t%s (%s)\n' % (client, client_nom)