Fix netgear username/password combo

pull/279/head
Paulus Schoutsen 2015-08-24 23:31:54 -07:00
parent 152fd9cb28
commit 917db18b29
1 changed files with 1 additions and 1 deletions

View File

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