cmd/satellite: fix args indexing in cmdValueAttribution

Change-Id: Ife7432132563a8b6858d437e16025ce201a488b0
This commit is contained in:
Cameron 2022-03-16 11:50:04 -04:00 committed by Cameron Ayer
parent 93f8c6a159
commit 41a095a539

View File

@ -670,7 +670,7 @@ func cmdValueAttribution(cmd *cobra.Command, args []string) (err error) {
ctx, _ := process.Ctx(cmd)
log := zap.L().Named("satellite-cli")
start, end, err := reports.ParseRange(args[1], args[2])
start, end, err := reports.ParseRange(args[0], args[1])
if err != nil {
return err
}