summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElvira García <egarciar@redhat.com>2022-11-25 15:05:50 +0100
committerElvira García <egarciar@redhat.com>2022-11-25 15:32:46 +0100
commit776e360e351c4b0c754fec5ad6308323adb44437 (patch)
treecd4d8873d92de40281798b3471235b51caad9efc
parentf67af3d9be8cb289a78ccc1dceb324abc4767fde (diff)
downloadpython-neutronclient-776e360e351c4b0c754fec5ad6308323adb44437.tar.gz
Fix help sentence in network log create --enable8.2.1
As the documentation states [1], the default in network log objects is to be enabled, not disabled. [1] https://docs.openstack.org/neutron/latest/admin/config-logging.html Change-Id: I13e9d1132fc38104e6e85d9c8442bc7506adc2fd
-rw-r--r--neutronclient/osc/v2/logging/network_log.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/neutronclient/osc/v2/logging/network_log.py b/neutronclient/osc/v2/logging/network_log.py
index df48fc1..b3b8204 100644
--- a/neutronclient/osc/v2/logging/network_log.py
+++ b/neutronclient/osc/v2/logging/network_log.py
@@ -58,11 +58,11 @@ def _get_common_parser(parser):
enable_group.add_argument(
'--enable',
action='store_true',
- help=_('Enable this log (default is disabled)'))
+ help=_('Enable this log'))
enable_group.add_argument(
'--disable',
action='store_true',
- help=_('Disable this log'))
+ help=_('Disable this log (default is enabled)'))
return parser