From 0fcbef96177c75a526f36652d6144efa72e92dc1 Mon Sep 17 00:00:00 2001 From: duzp111 Date: Mon, 8 Jul 2024 09:20:04 +0800 Subject: [PATCH] cmd --- diag_cmd.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/diag_cmd.py b/diag_cmd.py index e2092870..0c6b103a 100644 --- a/diag_cmd.py +++ b/diag_cmd.py @@ -586,9 +586,9 @@ class ObdiagGatherTableDumpHandler(ObdiagOriginCommand): def __init__(self): super(ObdiagGatherTableDumpHandler, self).__init__('tabledump', 'gather tabledump') - self.parser.add_option('--database', type='string', help="Specifies the name of the database to connect to.") - self.parser.add_option('--table', type='string', help="Specifies the name of the table in the database to operate on.") - self.parser.add_option('--user', type='string', help="The username to use for the database connection.") + self.parser.add_option('--database', type='string', help="Specifies the name of the database to connect to.") + self.parser.add_option('--table', type='string', help="Specifies the name of the table in the database to operate on.") + self.parser.add_option('--user', type='string', help="The username to use for the database connection.") self.parser.add_option('--password', type='string', help="The password for the database user. If not specified, an attempt will be made to connect without a password.", default='') self.parser.add_option('-c', type='string', help='obdiag custom config', default=os.path.expanduser('~/.obdiag/config.yml'))