mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-29 22:24:26 +00:00 
			
		
		
		
	Fix dashboard for Py3 installs (#596)
Fixes https://github.com/esphome/issues/issues/368
This commit is contained in:
		| @@ -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 | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user