diff --git a/weboob/capabilities/gauge.py b/weboob/capabilities/gauge.py index 8378fd02..7c0e2da9 100644 --- a/weboob/capabilities/gauge.py +++ b/weboob/capabilities/gauge.py @@ -63,6 +63,9 @@ class GaugeSensor(CapBaseObject): history = Field('Value history', list) # lastvalue not included gaugeid = StringField('Id of the gauge') + def __repr__(self): + return "" % (self.id, self.name) + class ICapGauge(IBaseCap): def iter_gauges(self, pattern=None):