Skip to content

Commit 09bba96

Browse files
committed
Merge remote-tracking branch 'origin/dev'
2 parents 6cab017 + a34806d commit 09bba96

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

hassio/addons/git.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""Init file for HassIO addons git."""
22
import asyncio
33
import logging
4+
import functools as ft
45
from pathlib import Path
56
import shutil
67

@@ -48,8 +49,9 @@ async def clone(self):
4849
try:
4950
_LOGGER.info("Clone addon %s repository", self.url)
5051
self.repo = await self.loop.run_in_executor(
51-
None, git.Repo.clone_from, self.url, str(self.path),
52-
recursive=True)
52+
None, ft.partial(
53+
git.Repo.clone_from, self.url, str(self.path),
54+
recursive=True))
5355

5456
except (git.InvalidGitRepositoryError, git.NoSuchPathError,
5557
git.GitCommandError) as err:

hassio/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Const file for HassIO."""
22
from pathlib import Path
33

4-
HASSIO_VERSION = '0.53'
4+
HASSIO_VERSION = '0.54'
55

66
URL_HASSIO_VERSION = ('https://raw.githubusercontent.com/home-assistant/'
77
'hassio/{}/version.json')

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"hassio": "0.53",
2+
"hassio": "0.54",
33
"homeassistant": "0.51.2",
44
"resinos": "1.0",
55
"resinhup": "0.3",

0 commit comments

Comments
 (0)