Skip to content
This repository was archived by the owner on Jan 18, 2021. It is now read-only.

Commit 68e3f4e

Browse files
committed
More robust local version handling
1 parent 22da6eb commit 68e3f4e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

custom_components/custom_updater.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
from homeassistant.components.http import HomeAssistantView
1515
from homeassistant.helpers.event import async_track_time_interval
1616

17-
VERSION = '4.2.11'
17+
VERSION = '4.2.12'
1818

1919
_LOGGER = logging.getLogger(__name__)
2020

21-
REQUIREMENTS = ['pyupdate==1.3.1']
21+
REQUIREMENTS = ['pyupdate==1.3.2']
2222

2323
CONF_TRACK = 'track'
2424
CONF_HIDE_SENSOR = 'hide_sensor'
@@ -67,7 +67,7 @@ async def async_setup(hass, config):
6767

6868
_LOGGER.debug('Version %s', VERSION)
6969
_LOGGER.debug('Mode %s', conf_mode)
70-
70+
7171
if conf_mode == 'yaml':
7272
if not os.path.exists("{}/ui-lovelace.yaml".format(str(hass.config.path()))):
7373
_LOGGER.warning(

0 commit comments

Comments
 (0)