Wemo troubles

so i set up a pushbullet notifications and put an action for a notification

action:
     - service: switch.turn_on
       entity_id: switch.dresser_fan
     - service: notify.push
       data: 
         message: "Charlie is home!"
         title: "Who is home?"
 - alias: 'Both leave the house'
```

So i thought everything would be fine but when i restarted HA, it wont load my wemo devices anymore and is giving me this in the log:

16-06-03 13:31:09 homeassistant.bootstrap: Error during setup of component wemo
Traceback (most recent call last):
File “/usr/local/lib/python3.4/dist-packages/homeassistant/bootstrap.py”, line 157, in _setup_component
if not component.setup(hass, config):
File “/usr/local/lib/python3.4/dist-packages/homeassistant/components/wemo.py”, line 76, in setup
devices = [(device.host, device) for device in pywemo.discover_devices()]
File “/var/opt/homeassistant/deps/pywemo/discovery.py”, line 27, in discover_devices
device = device_from_description(entry.location, mac)
File “/var/opt/homeassistant/deps/pywemo/discovery.py”, line 39, in device_from_description
return device_from_uuid_and_location(uuid, mac, description_url)
File “/var/opt/homeassistant/deps/pywemo/discovery.py”, line 55, in device_from_uuid_and_location
return Bridge(location, mac)
File “/var/opt/homeassistant/deps/pywemo/ouimeaux_device/bridge.py”, line 39, in init
self.bridge_update()
File “/var/opt/homeassistant/deps/pywemo/ouimeaux_device/bridge.py”, line 63, in bridge_update
self.Groups[uniqueID] = Group(self, group)
File “/var/opt/homeassistant/deps/pywemo/ouimeaux_device/bridge.py”, line 266, in init
super(Group, self).init(bridge, info)
File “/var/opt/homeassistant/deps/pywemo/ouimeaux_device/bridge.py”, line 92, in init
self._update_state(info)
File “/var/opt/homeassistant/deps/pywemo/ouimeaux_device/bridge.py”, line 280, in _update_state
for c in capabilities.split(’,’)
AttributeError: ‘NoneType’ object has no attribute ‘split’


What gives?