Pour le wifi, on affiche aussi le nom du proprio

darcs-hash:20041016085722-d1718-9b11dc74417f9bf9a21f8ee9e29efe888d6c9dc3.gz
This commit is contained in:
bernat 2004-10-16 10:57:22 +02:00
parent 4d243c01a7
commit ba9dbf123e

View file

@ -438,7 +438,7 @@ def machine_details(machine) :
if not res: if not res:
client_nom = '????' client_nom = '????'
else: 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) f += u'\t%s (%s)\n' % (client, client_nom)