diff --git a/packages/helpermodules/command.py b/packages/helpermodules/command.py index c973bdfe1f..3db8dac1b7 100644 --- a/packages/helpermodules/command.py +++ b/packages/helpermodules/command.py @@ -822,9 +822,9 @@ def systemUpdate(self, connection_id: str, payload: dict) -> None: if not SubData.general_data.data.extern and SubData.system_data["system"].data["secondary_auto_update"]: for cp in SubData.cp_data.values(): # if chargepoint is external_openwb and not the second CP of duo and version is Release - if all( - cp.chargepoint.chargepoint_module.config.type == 'external_openwb', - cp.chargepoint.chargepoint_module.config.configuration.duo_num == 0, + if ( + cp.chargepoint.chargepoint_module.config.type == 'external_openwb' and + cp.chargepoint.chargepoint_module.config.configuration.duo_num == 0 and cp.chargepoint.data.get.current_branch == "Release" ): time.sleep(2)