fix -o flag (#53)

This commit is contained in:
Norwin
2019-10-26 14:25:54 +00:00
committed by Andrew Thornton
parent 0926a42029
commit cd1ddb86b5
3 changed files with 6 additions and 8 deletions

View File

@ -93,7 +93,7 @@ func runIssuesList(ctx *cli.Context) error {
var values [][]string
if len(issues) == 0 {
Output(output, headers, values)
Output(outputValue, headers, values)
return nil
}
@ -112,7 +112,7 @@ func runIssuesList(ctx *cli.Context) error {
},
)
}
Output(output, headers, values)
Output(outputValue, headers, values)
return nil
}