From 23d512745470719b9320b8654a9de09be9803705 Mon Sep 17 00:00:00 2001 From: Florent Date: Wed, 19 Mar 2014 11:22:42 +0100 Subject: [PATCH] Do not set None to the id --- weboob/capabilities/gauge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/capabilities/gauge.py b/weboob/capabilities/gauge.py index 729a806d..72ef2ff6 100644 --- a/weboob/capabilities/gauge.py +++ b/weboob/capabilities/gauge.py @@ -48,7 +48,7 @@ class GaugeMeasure(CapBaseObject): alarm = StringField('Alarm level') def __init__(self): - CapBaseObject.__init__(self, None) + CapBaseObject.__init__(self) def __repr__(self): if empty(self.level):