Skip to content

Commit

Permalink
Swap percentage and whole number
Browse files Browse the repository at this point in the history
  • Loading branch information
codekoala committed Dec 9, 2017
1 parent 417e954 commit 9129467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/sh.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ var shCmd = &cobra.Command{
if numParallel > 1 {
percParallel, _ := fl.GetInt("pparallel")
if percParallel > 0 {
cmd.Printf("Executing on %d%% (%d) servers in parallel\n", percParallel, numParallel)
cmd.Printf("Executing on %d (%d%%) servers in parallel\n", numParallel, percParallel)
} else {
cmd.Printf("Executing on %d servers in parallel\n", numParallel)
}
Expand Down

0 comments on commit 9129467

Please sign in to comment.