Skip to content
Snippets Groups Projects
Unverified Commit 5079e209 authored by Cody Brownstein's avatar Cody Brownstein Committed by anarcat
Browse files

Fix typos

parent a6b29b91
Branches
No related tags found
No related merge requests found
...@@ -154,14 +154,14 @@ class MonkeysignArgumentParser(argparse.ArgumentParser): ...@@ -154,14 +154,14 @@ class MonkeysignArgumentParser(argparse.ArgumentParser):
self.add_argument('-s', '--smtpserver', '--smtp', self.add_argument('-s', '--smtpserver', '--smtp',
help=_('SMTP server to use, use a colon to specify ' help=_('SMTP server to use, use a colon to specify '
'the port number if non-default (%(port)d).' 'the port number if non-default (%(port)d).'
' willl attempt to use STARTTLS to secure ' ' will attempt to use STARTTLS to secure '
'the connexion and fail if unsupported ' 'the connection and fail if unsupported '
'(default: deliver using the --mta ' '(default: deliver using the --mta '
'command)') % 'command)') %
{'port': smtplib.SMTP_PORT}) {'port': smtplib.SMTP_PORT})
self.add_argument('--tls', action='store_true', self.add_argument('--tls', action='store_true',
help=_('use a complete TLS connexion instead of ' help=_('use a complete TLS connection instead of '
'using STARTTLS to upgrade the connexion. ' 'using STARTTLS to upgrade the connection. '
'will change the default SMTP port to ' 'will change the default SMTP port to '
'%(port)d') '%(port)d')
% {'port': smtplib.SMTP_SSL_PORT}) % {'port': smtplib.SMTP_SSL_PORT})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment