Hyperion configuration issues

Hi,
I’m having issues setting up hyperion lights. I have setup in configuration.yaml as described in the component section and information from some other forum posts, but just keep getting this error. I have managed to connect to it using homebridge using these details, so is reachable from this machine. Can anyone help with this error ?

configuration.yaml

light:
  platform: hyperion
  host: 10.10.10.84
  port: 19444

Log file

16-12-08 19:06:27 homeassistant.components.light: Error while setting up platform hyperion
Traceback (most recent call last):
  File "/srv/hass/lib/python3.5/site-packages/homeassistant/helpers/entity_component.py", line 150, in _async_setup_platform
    entity_platform.add_entities, discovery_info
  File "/usr/lib/python3.5/asyncio/futures.py", line 379, in __iter__
    yield self  # This tells Task to wait for completion.
  File "/usr/lib/python3.5/asyncio/tasks.py", line 297, in _wakeup
    future.result()
  File "/usr/lib/python3.5/asyncio/futures.py", line 292, in result
    raise self._exception
  File "/usr/lib/python3.5/concurrent/futures/thread.py", line 55, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/srv/hass/lib/python3.5/site-packages/homeassistant/components/light/hyperion.py", line 44, in setup_platform
    if device.setup():
  File "/srv/hass/lib/python3.5/site-packages/homeassistant/components/light/hyperion.py", line 115, in setup
    self._name = response['info']['hostname']
KeyError: 'hostname'

Hi Dave,

try this (note the dash that was missing in your config):

light:
  - platform: hyperion
    host: 10.10.10.84
    port: 19444

Regards,
Thomas