create_user: Separate password help into multiple lines.

This line is too long and ./tools/lint --pep8 is failing because
of this.
This commit is contained in:
Vishnu Ks 2017-07-09 02:42:34 +05:30 committed by Tim Abbott
parent 7a9de7766b
commit 4340b94a2d
1 changed files with 3 additions and 1 deletions

View File

@ -41,7 +41,9 @@ Omit both <email> and <full name> for interactive user creation.
dest='password',
type=str,
default='',
help='password of new user. Note that we recommend against setting passwords this way, since they can be snooped by any user account on the server via `ps -ef`.')
help='password of new user. Note that we recommend against setting '
'passwords this way, since they can be snooped by any user account '
'on the server via `ps -ef`.')
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,