Skip to content

Commit 734dc36

Browse files
author
Alexander Popov
committed
fix: change default password
1 parent 5ae7532 commit 734dc36

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

mamonsu/tools/bootstrap/start.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __init__(self):
4646
group.add_option(
4747
'-W', '--password',
4848
dest='password',
49-
default=self.default_user())
49+
default='')
5050
bootstrap_group = optparse.OptionGroup(
5151
parser,
5252
'Bootstrap options')

mamonsu/tools/report/start.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(self):
9090
group.add_option(
9191
'-W', '--password',
9292
dest='password',
93-
default=self.default_user())
93+
default='')
9494
parser.add_option_group(group)
9595

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

mamonsu/tools/tune/start.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __init__(self):
7575
group.add_option(
7676
'-W', '--password',
7777
dest='password',
78-
default=self.default_user())
78+
default='')
7979
parser.add_option_group(group)
8080

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

0 commit comments

Comments
 (0)