From 9559c39351abef59720a1c877b75dcd001a5bda6 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Fri, 28 Apr 2017 01:56:07 +0200 Subject: [PATCH] fix update merge --- hassio/addons/data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hassio/addons/data.py b/hassio/addons/data.py index 11d052352..ae4286aeb 100644 --- a/hassio/addons/data.py +++ b/hassio/addons/data.py @@ -90,8 +90,8 @@ class AddonsData(Config): current = self._current_data[addon] if data[ATTR_VERSION] == current[ATTR_VERSION]: - if data != current[addon]: - self._system_data[addon] = copy.deepcopy(current[data]) + if data != current: + self._system_data[addon] = copy.deepcopy(current) have_change = True if have_change: