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
This commit is contained in:
Ben Nemec 2020-07-21 15:32:17 +00:00
parent f32cffad0a
commit 1a08f4b439

View File

@ -168,7 +168,7 @@ def main():
"-f",
"--format",
choices=['std', 'json', 'yaml'],
default='standard',
default='std',
help="Output format")
parser.add_argument(
'branch',