mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 17:27:45 +01:00
Fix dashboard for Py3 installs (#596)
Fixes https://github.com/esphome/issues/issues/368
This commit is contained in:
parent
8f8892440c
commit
adc76ca1b8
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ def websocket_class(cls):
|
|||
if not hasattr(cls, '_message_handlers'):
|
||||
cls._message_handlers = {}
|
||||
|
||||
for _, method in cls.__dict__.iteritems():
|
||||
for _, method in cls.__dict__.items():
|
||||
if hasattr(method, "_message_handler"):
|
||||
cls._message_handlers[method._message_handler] = method
|
||||
|
||||
|
|
Loading…
Reference in a new issue