mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 15:12:06 +00:00 
			
		
		
		
	Fix component.update action (#308)
Fixes https://github.com/OttoWinter/esphomeyaml/issues/286
This commit is contained in:
		| @@ -295,7 +295,7 @@ COMPONENT_UPDATE_ACTION_SCHEMA = maybe_simple_id({ | |||||||
| def component_update_action_to_code(config, action_id, arg_type, template_arg): | def component_update_action_to_code(config, action_id, arg_type, template_arg): | ||||||
|     for var in get_variable(config[CONF_ID]): |     for var in get_variable(config[CONF_ID]): | ||||||
|         yield None |         yield None | ||||||
|     rhs = UpdateComponentAction.new(var) |     rhs = UpdateComponentAction.new(template_arg, var) | ||||||
|     type = UpdateComponentAction.template(template_arg) |     type = UpdateComponentAction.template(template_arg) | ||||||
|     yield Pvariable(action_id, rhs, type=type) |     yield Pvariable(action_id, rhs, type=type) | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user