Skip to content

Commit

Permalink
OCM-7256 | fix: Fprintf -> Fprint
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterkepley committed Apr 25, 2024
1 parent 47127b3 commit 672402e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/machinepool/machinepool.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func (m *machinePool) ListMachinePools(r *rosa.Runtime, clusterKey string, clust
} else {
finalStringToOutput = printNodePools(nodePools)
}
fmt.Fprintf(writer, finalStringToOutput)
fmt.Fprint(writer, finalStringToOutput)
writer.Flush()
}

Expand Down

0 comments on commit 672402e

Please sign in to comment.