summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/core/dispatcher.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/bitmask/core/dispatcher.py')
-rw-r--r--src/leap/bitmask/core/dispatcher.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/leap/bitmask/core/dispatcher.py b/src/leap/bitmask/core/dispatcher.py
index 82a0d8e7..2950896a 100644
--- a/src/leap/bitmask/core/dispatcher.py
+++ b/src/leap/bitmask/core/dispatcher.py
@@ -358,9 +358,9 @@ class CommandDispatcher(object):
def do_STATUS(self, *parts):
return _format_result(self.core.do_status())
- @register_method("{'shutdown': 'ok'}")
- def do_SHUTDOWN(self, *parts):
- return _format_result(self.core.do_shutdown())
+ @register_method("{'stop': 'ok'}")
+ def do_STOP(self, *parts):
+ return _format_result(self.core.do_stop())
# -----------------------------------------------