1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 12:29:08 +00:00

fix list remove

This commit is contained in:
Pascal Vizeli
2017-04-28 01:40:06 +02:00
parent 3bad896978
commit 9d95b70534
2 changed files with 2 additions and 2 deletions

View File

@@ -233,5 +233,5 @@ class CoreConfig(Config):
if repo not in self._data[ADDONS_CUSTOM_LIST]:
return
self._data[ADDONS_CUSTOM_LIST].pop(repo)
self._data[ADDONS_CUSTOM_LIST].remove(repo)
self.save()