Update tasks.py

This commit is contained in:
Pascal Vizeli 2017-07-07 00:20:38 +02:00 committed by GitHub
parent 4dfd11ffb4
commit 710f8570d2

View File

@ -24,7 +24,7 @@ def addons_update(loop, addons):
"""Check if a update is available of a addon and update it."""
tasks = []
for addon in addons.list_addons:
if not addon.is_installed:
if not addon.is_installed or not addon.auto_update:
continue
if addon.version_installed != addon.version: