diff --git a/zerver/management/commands/create_user.py b/zerver/management/commands/create_user.py index eb9b981f04..9ed69c70d2 100644 --- a/zerver/management/commands/create_user.py +++ b/zerver/management/commands/create_user.py @@ -41,7 +41,9 @@ Omit both and 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='', type=str, nargs='?', default=argparse.SUPPRESS, help='email address of new user') parser.add_argument('full_name', metavar='', type=str, nargs='?', default=argparse.SUPPRESS,