diff mbox series

kunit: tool: fix --qemu_config help text

Message ID 20220819020815.183766-1-tales.aparecida@gmail.com (mailing list archive)
State New
Delegated to: Brendan Higgins
Headers show
Series kunit: tool: fix --qemu_config help text | expand

Commit Message

Tales Aug. 19, 2022, 2:08 a.m. UTC
Remove duplicated wording from the help text for the kunit_tool
argument "qemu_config":
"Takes a path to a path to a file containing a QemuArchParams object."
         ~~~~~~~~~

Signed-off-by: Tales Aparecida <tales.aparecida@gmail.com>
---
 tools/testing/kunit/kunit.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tools/testing/kunit/kunit.py b/tools/testing/kunit/kunit.py
index e132b0654029..ae193c9820c5 100755
--- a/tools/testing/kunit/kunit.py
+++ b/tools/testing/kunit/kunit.py
@@ -322,7 +322,7 @@  def add_common_opts(parser) -> None:
 			    metavar='PREFIX')
 
 	parser.add_argument('--qemu_config',
-			    help=('Takes a path to a path to a file containing '
+			    help=('Takes a path to a file containing '
 				  'a QemuArchParams object.'),
 			    type=str, metavar='FILE')