summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/cli/eip.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/bitmask/cli/eip.py')
-rw-r--r--src/leap/bitmask/cli/eip.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/leap/bitmask/cli/eip.py b/src/leap/bitmask/cli/eip.py
index 2ce43d81..eac8682a 100644
--- a/src/leap/bitmask/cli/eip.py
+++ b/src/leap/bitmask/cli/eip.py
@@ -17,10 +17,10 @@
"""
Bitmask Command Line interface: eip
"""
-from leap.bitmask.cli.command import appname, Command
+from leap.bitmask.cli import command
-class Eip(Command):
+class Eip(command.Command):
service = 'eip'
usage = '''{name} eip <subcommand>
@@ -32,6 +32,6 @@ SUBCOMMANDS:
stop Stop service
status Display status about service
-'''.format(name=appname)
+'''.format(name=command.appname)
commands = ['start', 'stop', 'status']