zerver: Text-wrap long lines exceeding 110.

This commit is contained in:
rht
2017-11-09 11:45:56 +01:00
committed by Tim Abbott
parent 23a481c5d2
commit a93b7c40a7
11 changed files with 44 additions and 22 deletions

View File

@@ -46,7 +46,8 @@ Omit both <email> and <full name> for interactive user creation.
help='The file containing the password of the new user.')
parser.add_argument('email', metavar='<email>', type=str, nargs='?', default=argparse.SUPPRESS,
help='email address of new user')
parser.add_argument('full_name', metavar='<full name>', type=str, nargs='?', default=argparse.SUPPRESS,
parser.add_argument('full_name', metavar='<full name>', type=str, nargs='?',
default=argparse.SUPPRESS,
help='full name of new user')
self.add_realm_args(parser, True, "The name of the existing realm to which to add the user.")