From 1a08f4b439780da985857f27f1a210c408dbce84 Mon Sep 17 00:00:00 2001 From: Ben Nemec <bnemec@redhat.com> Date: Tue, 21 Jul 2020 15:32:17 +0000 Subject: [PATCH] Fix output format default in list_unreleased_changes "standard" is not one of the valid values and it results in the command erroring because no output is returned. The correct default for this opt seems to be "std". Change-Id: I7df3feb98877b2a846f7239fb741ae84e35b59d5 --- openstack_releases/cmds/list_unreleased_changes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_releases/cmds/list_unreleased_changes.py b/openstack_releases/cmds/list_unreleased_changes.py index f222c8c6ed..3efedaedf3 100644 --- a/openstack_releases/cmds/list_unreleased_changes.py +++ b/openstack_releases/cmds/list_unreleased_changes.py @@ -168,7 +168,7 @@ def main(): "-f", "--format", choices=['std', 'json', 'yaml'], - default='standard', + default='std', help="Output format") parser.add_argument( 'branch',