summaryrefslogtreecommitdiffstats
path: root/cli/objects/wol.py
diff options
context:
space:
mode:
Diffstat (limited to 'cli/objects/wol.py')
-rw-r--r--cli/objects/wol.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/objects/wol.py b/cli/objects/wol.py
index 44228c8..b037804 100644
--- a/cli/objects/wol.py
+++ b/cli/objects/wol.py
@@ -13,7 +13,7 @@ import argparse
class OgWol():
@staticmethod
- def send_wol(rest, args):
+ def request_wol(rest, args):
def scope_lookup(scope_id, scope_type, d):
if scope_id == d.get('id') and \
scope_type == d.get('type'):
@@ -26,7 +26,7 @@ class OgWol():
return lookup
return None
- parser = argparse.ArgumentParser(prog='ogcli send wol')
+ parser = argparse.ArgumentParser(prog='ogcli request wol')
parser.add_argument('--type',
nargs='?',
choices=['broadcast', 'unicast'],