diff --git a/homeassistant/components/switch/wemo.py b/homeassistant/components/switch/wemo.py
index 5a38e7d20ce0ed73b77cd309351f3e024ca698af..13611f816ca6066d6794f8f9b13f888d6acbc868 100644
--- a/homeassistant/components/switch/wemo.py
+++ b/homeassistant/components/switch/wemo.py
@@ -121,7 +121,7 @@ class WemoSwitch(SwitchDevice):
         if self.insight_params:
             standby_state = int(self.insight_params['state'])
             if standby_state == WEMO_ON:
-                return STATE_OFF
+                return STATE_ON
             elif standby_state == WEMO_OFF:
                 return STATE_OFF
             elif standby_state == WEMO_STANDBY: