Fix netgear username/password combo

This commit is contained in:
Paulus Schoutsen 2015-08-24 23:31:54 -07:00
parent 152fd9cb28
commit 917db18b29

View File

@ -56,7 +56,7 @@ def get_scanner(hass, config):
_LOGGER.warning('Found username or password but no host') _LOGGER.warning('Found username or password but no host')
return None return None
scanner = NetgearDeviceScanner(host, password, username) scanner = NetgearDeviceScanner(host, username, password)
return scanner if scanner.success_init else None return scanner if scanner.success_init else None