mirror of
https://github.com/home-assistant/core.git
synced 2025-08-11 08:35:15 +02:00
Fix encoding errors in mikrotik device tracker (#13464)
This commit is contained in:
@@ -73,7 +73,8 @@ class MikrotikScanner(DeviceScanner):
|
||||
self.host,
|
||||
self.username,
|
||||
self.password,
|
||||
port=int(self.port)
|
||||
port=int(self.port),
|
||||
encoding='utf-8'
|
||||
)
|
||||
|
||||
try:
|
||||
|
Reference in New Issue
Block a user