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

Commit

Permalink
4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Feb 14, 2019
1 parent 4b7e219 commit 5e6ec75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
11 changes: 0 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,3 @@ jobs:
name: "Linting with flake8"
python: "3.6"
script: find . -name \*.py -exec flake8 {} +

# Load component with Home Assistant
- stage: load
name: "Load component/platform in Home Assistant"
install: pip install homeassistant
python: "3.6"
script:
- hass -c . --daemon
- sleep 60
- cat ./home-assistant.log
- if grep -q 'ERROR' ./home-assistant.log; then echo "There was an error starting Home Assistant"; exit 1; fi
6 changes: 4 additions & 2 deletions custom_components/custom_updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
from homeassistant.helpers.event import track_time_interval
from homeassistant.components.http import HomeAssistantView

VERSION = '4.0.0'
VERSION = '4.0.1'

_LOGGER = logging.getLogger(__name__)

REQUIREMENTS = ['pyupdate==0.2.23']
REQUIREMENTS = ['pyupdate==0.2.25']

CONF_TRACK = 'track'
CONF_HIDE_SENSOR = 'hide_sensor'
Expand Down Expand Up @@ -64,6 +64,8 @@ def setup(hass, config):
_LOGGER.info('if you have ANY issues with this, please report them here:'
' https://github.com/custom-components/custom_updater')

_LOGGER.debug('Version %s', VERSION)

if 'cards' in conf_track:
card_controller = CustomCards(hass,
conf_hide_sensor, conf_card_urls,
Expand Down

0 comments on commit 5e6ec75

Please sign in to comment.