Skip to content

Commit

Permalink
Longer name field
Browse files Browse the repository at this point in the history
  • Loading branch information
prehensilecode committed Jul 1, 2022
1 parent e424160 commit 8d9f737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slurm_billing_report.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func execute(account string, year int, month int) {
tre, _ := strconv.ParseFloat(line[5], 65)
su := tre
charge_str := p.Sprintf("%.2f", su * rate)
fmt.Printf("%21s %8s %8.6e $ %9s\n", name, login, su, charge_str)
fmt.Printf("%23s %8s %8.6e $ %9s\n", name, login, su, charge_str)
}
}
}
Expand Down

0 comments on commit 8d9f737

Please sign in to comment.