cloudmonkey: fix help strings Signed-off-by: Rohit Yadav <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/commit/b8fc61e9 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/tree/b8fc61e9 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/diff/b8fc61e9 Branch: refs/heads/master Commit: b8fc61e990e558169697659a01ab28ef20d13e78 Parents: f1f27e3 Author: Rohit Yadav <[email protected]> Authored: Tue Sep 9 14:29:18 2014 +0200 Committer: Rohit Yadav <[email protected]> Committed: Tue Sep 9 14:29:18 2014 +0200 ---------------------------------------------------------------------- cloudmonkey/cloudmonkey.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/blob/b8fc61e9/cloudmonkey/cloudmonkey.py ---------------------------------------------------------------------- diff --git a/cloudmonkey/cloudmonkey.py b/cloudmonkey/cloudmonkey.py index bc5530c..fabbac2 100644 --- a/cloudmonkey/cloudmonkey.py +++ b/cloudmonkey/cloudmonkey.py @@ -571,7 +571,7 @@ def main(): parser.add_argument("-c", "--config-file", dest="configFile", default=config_file, - help="config file for cloudmonkey", metavar="FILE") + help="Config file for cloudmonkey", metavar="FILE") parser.add_argument("-d", "--display-type", dest="displayType", default=None, @@ -579,7 +579,7 @@ def main(): choices=tuple(displayTypes)) parser.add_argument("commands", nargs=argparse.REMAINDER, - help="api commands") + help="API commands") argcomplete.autocomplete(parser) args = parser.parse_args()
