Skip to content

Commit d64496f

Browse files
committed
fix help messages
1 parent 4496bde commit d64496f

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

mamonsu/tools/bootstrap/start.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ def __init__(self):
4545
group.add_option(
4646
'-W', '--password',
4747
dest='password',
48-
default=self.default_user(),
49-
help='password (should happen automatically) ')
48+
default=self.default_user())
5049
parser.add_option_group(group)
5150

5251
self.args, commands = parser.parse_args()

mamonsu/tools/report/start.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ def __init__(self):
9595
group.add_option(
9696
'-W', '--password',
9797
dest='password',
98-
default=self.default_user(),
99-
help='password (should happen automatically) ')
98+
default=self.default_user())
10099
parser.add_option_group(group)
101100

102101
self.args, _ = parser.parse_args()

mamonsu/tools/tune/start.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@ def __init__(self):
7474
group.add_option(
7575
'-W', '--password',
7676
dest='password',
77-
default=self.default_user(),
78-
help='password (should happen automatically) ')
77+
default=self.default_user())
7978
parser.add_option_group(group)
8079

8180
self.args, _ = parser.parse_args()

0 commit comments

Comments
 (0)