From dea6f1cf7659d2693936759a8b4f447c0dabcfc4 Mon Sep 17 00:00:00 2001 From: Florent Date: Wed, 8 Oct 2014 14:52:45 +0200 Subject: [PATCH] Fix printing of categories --- contrib/munin/weboob-generic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/munin/weboob-generic b/contrib/munin/weboob-generic index 00b57d73..8efcbcb0 100755 --- a/contrib/munin/weboob-generic +++ b/contrib/munin/weboob-generic @@ -276,7 +276,7 @@ class GenericMuninPlugin(object): self.weboob.load_backends(self.capa) self.write_output('graph_title %s' % self.title.encode('iso-8859-15')) self.write_output('graph_vlabel %s' % self.vlabel.encode('iso-8859-15')) - self.write_output('graph_category %s') % self.category + self.write_output('graph_category %s' % self.category) self.write_output('graph_args --rigid') if self.cumulate: self.write_output('graph_total Total')