# HG changeset patch # User Goffi # Date 1498761426 -7200 # Node ID 688ff67d6ae9db3e830194843e0ead6a2f5c4ac0 # Parent 4fd010f29f993a0057bb7f33f1c33ddd6c9e2a82 jp (invitation/create): typo diff -r 4fd010f29f99 -r 688ff67d6ae9 frontends/src/jp/cmd_invitation.py --- a/frontends/src/jp/cmd_invitation.py Thu Jun 29 20:36:35 2017 +0200 +++ b/frontends/src/jp/cmd_invitation.py Thu Jun 29 20:37:06 2017 +0200 @@ -41,7 +41,7 @@ self.parser.add_argument("-e", "--email", type=base.unicode_decoder, default='', help='email to send the invitation to (if --no-email is set, email will just be saved)') self.parser.add_argument("--no-email", action="store_true", help='do NOT send invitation email') self.parser.add_argument("-l", "--lang", type=base.unicode_decoder, default='', help='main language spoken by the invitee') - self.parser.add_argument("-u", "--url", type=base.unicode_decoder, default='', help='template to construt the URL') + self.parser.add_argument("-u", "--url", type=base.unicode_decoder, default='', help='template to construct the URL') self.parser.add_argument("-s", "--subject", type=base.unicode_decoder, default='', help='subject of the invitation email (default: generic subject)') self.parser.add_argument("-b", "--body", type=base.unicode_decoder, default='', help='body of the invitation email (default: generic body)') self.parser.add_argument("-x", "--extra", metavar=('KEY', 'VALUE'), type=base.unicode_decoder, action='append', nargs=2, default=[], help='extra data to associate with invitation/invitee')