Skip to content

Commit

Permalink
Don't warn about HACS
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Aug 10, 2019
1 parent 429a384 commit 26952ba
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion custom_components/hacs/hacsbase/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,10 @@ async def restore(self):
for repository in self.repositories:
if repository.status.installed:
installed_restore.append(repository.information.full_name)
if repository.information.full_name not in self.common.installed:
if (
repository.information.full_name not in self.common.installed
and repository.information.full_name != "custom-components/hacs"
):
self.logger.warning(
f"{repository.information.full_name} is not in common.installed"
)
Expand Down

0 comments on commit 26952ba

Please sign in to comment.