summaryrefslogtreecommitdiff
path: root/smart_home/outlets.py
diff options
context:
space:
mode:
Diffstat (limited to 'smart_home/outlets.py')
-rw-r--r--smart_home/outlets.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/smart_home/outlets.py b/smart_home/outlets.py
index b9bfe22..3765567 100644
--- a/smart_home/outlets.py
+++ b/smart_home/outlets.py
@@ -87,7 +87,7 @@ class TPLinkOutlet(BaseOutlet):
cmd = self.get_cmdline() + f"-c {cmd}"
if extra_args is not None:
cmd += f" {extra_args}"
- return tplink.tplink_command(cmd)
+ return tplink.tplink_command_wrapper(cmd)
@overrides
def turn_on(self) -> bool:
@@ -152,7 +152,7 @@ class TPLinkOutletWithChildren(TPLinkOutlet):
if extra_args is not None:
cmd += f" {extra_args}"
logger.debug('About to execute: %s', cmd)
- return tplink.tplink_command(cmd)
+ return tplink.tplink_command_wrapper(cmd)
def get_children(self) -> List[str]:
return self.children