PS : A oui j’eusse oublié pour mes sondes j’avais un problème de remontée du à ma version de python recompilé au préalable, j’aurai du être en 3.9 mais la du coup je suis en : Python 3.11.7
0050|[2024-02-17 12:18:38]ERROR : Error on send info to Jeedom : module ‹ collections › has no attribute ‹ Mapping ›
Un coup de google et une modification :
sudo vim +126 /var/www/html/plugins/rfxcom/resources/rfxcomd/jeedom/jeedom.py
v1 = d1.get(k) # returns None if v1 has no value for this key
#if ( isinstance(v1, collections.Mapping) and
if ( isinstance(v1, collections.abc.Mapping) and
#isinstance(v2, collections.Mapping) ):
isinstance(v2, collections.abc.Mapping) ):
self.merge_dict(v1, v2)