Skip to content

Commit

Permalink
Fix --help for magma-web update
Browse files Browse the repository at this point in the history
  • Loading branch information
ridderl committed Mar 8, 2019
1 parent b6941b7 commit 9b93fd4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions web/magmaweb/script.py
Expand Up @@ -42,16 +42,16 @@ def __init__(self):
"update", help=self.update.__doc__,
description=self.update.__doc__)
sc_update.add_argument(
'-u', '--user', help="change user id (default: %(default)s)",
'-u', '--user', help="change user id)",
default=argparse.SUPPRESS, type=str)
sc_update.add_argument(
'-n', '--name', help="change display name (default: %(default)s)",
'-n', '--name', help="change display name",
default=argparse.SUPPRESS, type=str)
sc_update.add_argument(
'-e', '--email', help="change email (default: %(default)s)",
'-e', '--email', help="change email",
default=argparse.SUPPRESS, type=str)
sc_update.add_argument(
'-p', '--password', help="change password (default: %(default)s)",
'-p', '--password', help="change password",
default=argparse.SUPPRESS, type=str)
sc_update.add_argument(
'userid', help="user id (default: %(default)s)",
Expand Down

0 comments on commit 9b93fd4

Please sign in to comment.