Convert asuswrt user/pass to strings
This commit is contained in:
parent
a0ddda4bc6
commit
e6846e7eb9
1 changed files with 2 additions and 2 deletions
|
@ -58,8 +58,8 @@ class AsusWrtDeviceScanner(object):
|
|||
|
||||
def __init__(self, config):
|
||||
self.host = config[CONF_HOST]
|
||||
self.username = config[CONF_USERNAME]
|
||||
self.password = config[CONF_PASSWORD]
|
||||
self.username = str(config[CONF_USERNAME])
|
||||
self.password = str(config[CONF_PASSWORD])
|
||||
|
||||
self.lock = threading.Lock()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue