Updated HACS - Updated Secrets file to remove entries.

This commit is contained in:
ccostan
2020-05-22 14:11:48 -04:00
parent b697a2e9f8
commit b65043a531
4 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
"""Constants for HACS"""
NAME_LONG = "HACS (Home Assistant Community Store)"
NAME_SHORT = "HACS"
VERSION = "1.0.0"
VERSION = "1.0.1"
DOMAIN = "hacs"
PROJECT_URL = "https://github.com/hacs/integration/"
CUSTOM_UPDATER_LOCATIONS = [

View File

@@ -14,7 +14,7 @@
"aiofiles==0.5.0",
"aiogithubapi==1.0.4",
"backoff==1.10.0",
"hacs_frontend==20200521162326",
"hacs_frontend==20200522122100",
"integrationhelper==0.2.2",
"semantic_version==2.8.5",
"queueman==0.5"

View File

@@ -73,6 +73,8 @@ class RepositoryData:
for key in source:
if key in data.__dict__:
if key == "pushed_at":
if source[key] == "":
continue
if "Z" in source[key]:
setattr(
data,
@@ -101,6 +103,8 @@ class RepositoryData:
for key in data:
if key in self.__dict__:
if key == "pushed_at":
if data[key] == "":
continue
if "Z" in data[key]:
setattr(
self,