From 61295742909f813a074e59e09cadc7853818c699 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Thu, 12 Apr 2012 21:20:37 -0400 Subject: [PATCH] Include default value for connection in help. --- lib/ansible/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/utils.py b/lib/ansible/utils.py index ca1117dd54..5052a7c0f2 100755 --- a/lib/ansible/utils.py +++ b/lib/ansible/utils.py @@ -314,7 +314,7 @@ def base_parser(constants=C, usage="", output_opts=False, runas_opts=False, asyn parser.add_option('-c', '--connection', dest='connection', choices=C.DEFAULT_TRANSPORT_OPTS, default=C.DEFAULT_TRANSPORT, - help="connection type to use") + help="connection type to use (default=%s)" % C.DEFAULT_TRANSPORT) if async_opts: parser.add_option('-P', '--poll', default=constants.DEFAULT_POLL_INTERVAL, type='int',