Custom updater gives local_location error when 'check'

I have placed the two files from https://github.com/custom-components/custom_updater/tree/master/custom_components/custom_updater in config\custom_components\custom_updater

image
In configuration.yaml:

custom_updater:
  component_urls:
    - https://raw.githubusercontent.com/xirixiz/Home-Assistant-Sensor-Afvalwijzer/master/custom_updater.json
    - https://raw.githubusercontent.com/peternijssen/lovelace-postnl/master/tracker.json

In ui-lovelace.yaml:

resources:
  - url: /customcards/monster-card/monster-card.js
    type: js
  - url: /customcards/github/custom-cards/tracker-card.js?track=true
    type: module   
  - url: /customcards/slider-entity/slider-entity-row.js
    type: js
  - url: /customcards/postnl-card.js
    type: module  

An in ui-lovelace.yaml:

cards:
  - type: custom:tracker-card
    title: Updates
    trackers:
      - sensor.custom_card_tracker
      - sensor.custom_component_tracker

Error log:

Log Details (ERROR)
Fri May 03 2019 09:42:36 GMT+0200 (Midden-Europese zomertijd)
'local_location'
Traceback (most recent call last):
  File "/usr/local/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 121, in handle_call_service
    connection.context(msg))
  File "/usr/local/lib/python3.7/site-packages/homeassistant/core.py", line 1138, in async_call
    self._execute_service(handler, service_call))
  File "/usr/local/lib/python3.7/site-packages/homeassistant/core.py", line 1160, in _execute_service
    await handler.func(service_call)
  File "/config/custom_components/custom_updater/__init__.py", line 110, in check_all_service
    await components_controller.cache_versions()
  File "/config/custom_components/custom_updater/__init__.py", line 222, in cache_versions
    information = await self.pyupdate.get_sensor_data(True)
  File "/config/deps/lib/python3.7/site-packages/pyupdate/ha_custom/custom_components.py", line 64, in get_sensor_data
    local_file = self.base_dir + str(component['local_location'])
KeyError: 'local_location'

Any tips what I am missing?

Not sure why, but the custom updater is working again…