]> code.ossystems Code Review - openembedded-core.git/commitdiff
devtool: fix typo
authorPaul Eggleton <paul.eggleton@linux.microsoft.com>
Mon, 15 Jun 2020 02:27:55 +0000 (19:27 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 22 Jun 2020 12:05:47 +0000 (13:05 +0100)
specifiy -> specify

Signed-off-by: Paul Eggleton <paul.eggleton@linux.microsoft.com>
scripts/lib/devtool/deploy.py

index 6a997735fceeb513c7f9e20ba804da50d5c90c87..b1749ce67298de2fe3683eac357220ea1c5b9627 100644 (file)
@@ -330,7 +330,7 @@ def register_commands(subparsers, context):
     parser_deploy.add_argument('-e', '--ssh-exec', help='Executable to use in place of ssh')
     parser_deploy.add_argument('-P', '--port', help='Specify port to use for connection to the target')
     parser_deploy.add_argument('-I', '--key',
-                               help='Specifiy ssh private key for connection to the target')
+                               help='Specify ssh private key for connection to the target')
 
     strip_opts = parser_deploy.add_mutually_exclusive_group(required=False)
     strip_opts.add_argument('-S', '--strip',
@@ -355,6 +355,6 @@ def register_commands(subparsers, context):
     parser_undeploy.add_argument('-e', '--ssh-exec', help='Executable to use in place of ssh')
     parser_undeploy.add_argument('-P', '--port', help='Specify port to use for connection to the target')
     parser_undeploy.add_argument('-I', '--key',
-                               help='Specifiy ssh private key for connection to the target')
+                               help='Specify ssh private key for connection to the target')
 
     parser_undeploy.set_defaults(func=undeploy)