Commit bf68ff5d authored by Taddeus Kroes's avatar Taddeus Kroes

Removed obsolete default password value

parent e288089d
......@@ -302,8 +302,7 @@ if __name__ == '__main__': # pragma: nocover
help='MySQL server address')
parser.add_argument('-u', '--user', metavar='USERNAME', default='root',
help='MySQL username')
parser.add_argument('-p', '--password', default='mysql12#$',
help='MySQL password')
parser.add_argument('-p', '--password', default='', help='MySQL password')
parser.add_argument('--has-one', nargs=2, dest='opt_has_one',
help='one-to-one relationships of the form '
'\'payment receipt\', where one payment has one '
......@@ -323,6 +322,7 @@ if __name__ == '__main__': # pragma: nocover
parser.add_argument('-s', '--spaces', nargs='?', const=4, type=int,
help='use spaces instead of tabs (4 by default)')
args = parser.parse_args()
print args
options = {}
for arg, value in args._get_kwargs():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment