summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/cli/mail.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/bitmask/cli/mail.py')
-rw-r--r--src/leap/bitmask/cli/mail.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/leap/bitmask/cli/mail.py b/src/leap/bitmask/cli/mail.py
index 76fdc3b9..9bb5581d 100644
--- a/src/leap/bitmask/cli/mail.py
+++ b/src/leap/bitmask/cli/mail.py
@@ -17,14 +17,14 @@
"""
Bitmask Command Line interface: mail
"""
-from leap.bitmask.cli.command import appname, Command
+from leap.bitmask.cli import command
-class Mail(Command):
+class Mail(command.Command):
service = 'mail'
usage = '''{name} mail <subcommand>
-Bitmask Encrypted Email service
+Bitmask Encrypted Email Service
SUBCOMMANDS:
@@ -34,7 +34,7 @@ SUBCOMMANDS:
get-token Returns token for the mail service
get-smtp-certificate Downloads a new smtp certificate
-'''.format(name=appname)
+'''.format(name=command.appname)
commands = ['enable', 'disable', 'status', 'get-token',
'get-smtp-certificate']