mirror of
https://github.com/home-assistant/core.git
synced 2025-07-09 22:37:11 +00:00
Fix encoding errors in mikrotik device tracker (#13464)
This commit is contained in:
parent
3e3f710b12
commit
8ab5978db3
@ -73,7 +73,8 @@ class MikrotikScanner(DeviceScanner):
|
|||||||
self.host,
|
self.host,
|
||||||
self.username,
|
self.username,
|
||||||
self.password,
|
self.password,
|
||||||
port=int(self.port)
|
port=int(self.port),
|
||||||
|
encoding='utf-8'
|
||||||
)
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user