From 9d8d17dd6338c6d5bcb1665c37815b48665a017f Mon Sep 17 00:00:00 2001 From: bernat Date: Tue, 25 Oct 2005 10:46:31 +0200 Subject: [PATCH] Encodage de la sortie de commands.getoutput darcs-hash:20051025084631-d1718-b349c32a28c73525724209b2fbe396438639a147.gz --- wiki/macro/HostStatus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/macro/HostStatus.py b/wiki/macro/HostStatus.py index 9016d0ba..161cec25 100644 --- a/wiki/macro/HostStatus.py +++ b/wiki/macro/HostStatus.py @@ -35,7 +35,7 @@ def execute(macro, text) : line = line.split(' ') code += f.table_row(1) code += f.table_cell(1,{'style':'background-color:silver'}) - code += f.text('%s (%s)' % (line [0], getoutput("grep '^%s' /etc/autostatus/hosts | cut -d ' ' -f 5-" % line [0])) ) + code += unicode(f.text('%s (%s)' % (line [0], getoutput("grep '^%s' /etc/autostatus/hosts | cut -d ' ' -f 5-" % line [0])) ), "iso-8859-15") code += f.table_cell(0) # nombre de non réponse au ping if int(line[1]) > 2 :