diff --git a/homeassistant/components/switch/wemo.py b/homeassistant/components/switch/wemo.py index c3b6d434b73..f476cdd980b 100644 --- a/homeassistant/components/switch/wemo.py +++ b/homeassistant/components/switch/wemo.py @@ -109,9 +109,9 @@ class WemoSwitch(SwitchDevice): # Is the maker switch configured as toggle(0) or momentary (1). if self.maker_params['switchmode']: if self.maker_params['switchmode'] == '1': - attr[ATTR_SWITCH_MODE] = MAKER_SWITCH_MOMENTARY + attr[ATTR_SWITCH_MODE] = MAKER_SWITCH_MOMENTARY else: - attr[ATTR_SWITCH_MODE] = MAKER_SWITCH_TOGGLE + attr[ATTR_SWITCH_MODE] = MAKER_SWITCH_TOGGLE return attr