From dce68b1bf5f1b44ff6cf7ae63a885742b8e6e4e9 Mon Sep 17 00:00:00 2001 From: salles Date: Sat, 1 Sep 2007 16:45:25 +0200 Subject: [PATCH] =?UTF-8?q?Correction=20d'un=20bug=20suite=20=C3=A0=20la?= =?UTF-8?q?=20mise=20=C3=A0=20jour=20de=20moinmoin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit darcs-hash:20070901144525-72cb0-36d65e47bdadf6f0ef23187b6359c8fa98c4f0a2.gz --- munin/wiki_themes | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/munin/wiki_themes b/munin/wiki_themes index b148c30d..b609e382 100755 --- a/munin/wiki_themes +++ b/munin/wiki_themes @@ -20,7 +20,7 @@ if arg == "config" : print "graph_vlabel nb d'utilisateurs" for theme in THEMES : nom = theme.strip().split(' ')[1] - for char in [' ','_','-','/','\\',':',';','.'] : + for char in [' ','_','-','/','\\',':',';','.','<','>'] : nom = nom.replace(char, '') print '%s.label %s' % (nom, theme.strip().split(' ')[1]) if THEMES.index(theme) == 0 : @@ -32,7 +32,7 @@ else : for theme in THEMES : nom = theme.strip().split(' ')[1] nb = theme.strip().split(' ')[0] - for char in [' ','_','-','/','\\',':',';','.'] : + for char in [' ','_','-','/','\\',':',';','.','<','>'] : nom = nom.replace(char, '') print '%s.value %s' % (nom, nb)