Skip to content
This repository was archived by the owner on Jun 30, 2024. It is now read-only.

Commit bc54722

Browse files
committed
Docs: Update/correct adduser.
1 parent 8a8a780 commit bc54722

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

rsmanage/rsmanage.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -409,10 +409,8 @@ def build(config, clone, ptx, gen, manifest, course):
409409

410410

411411
#
412-
# inituser
412+
# adduser
413413
#
414-
415-
416414
@cli.command()
417415
@click.option("--instructor", is_flag=True, help="Make this user an instructor")
418416
@click.option(
@@ -460,7 +458,7 @@ def adduser(
460458
for line in csv.reader(fromfile):
461459
if len(line) != 6:
462460
click.echo("Not enough data to create a user. Lines must be")
463-
click.echo("username, email first_name, last_name, password, course")
461+
click.echo("username, email, first_name, last_name, password, course")
464462
exit(1)
465463
if "@" not in line[1]:
466464
click.echo("emails should have an @ in them in column 2")

0 commit comments

Comments
 (0)