From 1672eeb8807451534f96c20e33b1d4075e84def8 Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Wed, 13 Jun 2012 12:15:08 -0400 Subject: [PATCH] Fix help messages for --debug. Fixes LP Bug #1012746. Change-Id: I54af0d20b3f5b56a1b350de3ac1324f1bbcd57ed --- bin/glance | 2 +- bin/glance-cache-manage | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/glance b/bin/glance index bec3c8ad..d4946bda 100755 --- a/bin/glance +++ b/bin/glance @@ -832,7 +832,7 @@ def create_options(parser): parser.add_option('-v', '--verbose', default=False, action="store_true", help="Print more verbose output") parser.add_option('-d', '--debug', default=False, action="store_true", - help="Print more verbose output") + help="Print debugging output") parser.add_option('-H', '--host', metavar="ADDRESS", default="0.0.0.0", help="Address of Glance API host. " "Default: %default") diff --git a/bin/glance-cache-manage b/bin/glance-cache-manage index 1411d695..e7c14e51 100755 --- a/bin/glance-cache-manage +++ b/bin/glance-cache-manage @@ -281,7 +281,7 @@ def create_options(parser): parser.add_option('-v', '--verbose', default=False, action="store_true", help="Print more verbose output") parser.add_option('-d', '--debug', default=False, action="store_true", - help="Print more verbose output") + help="Print debugging output") parser.add_option('-H', '--host', metavar="ADDRESS", default="0.0.0.0", help="Address of Glance API host. " "Default: %default")