Skip to content

Commit

Permalink
Merge pull request #948 from tzvatot/fix-redundant-quotes
Browse files Browse the repository at this point in the history
SDA-7290 Remove redundant quotation
  • Loading branch information
openshift-merge-robot authored Nov 27, 2022
2 parents d57abdc + 1b63988 commit caf7049
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/describe/cluster/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func run(cmd *cobra.Command, argv []string) {
}

// Print short cluster description:
str = fmt.Sprintf("```\n"+
str = fmt.Sprintf("\n"+
"Name: %s\n"+
"ID: %s\n"+
"External ID: %s\n"+
Expand Down Expand Up @@ -304,7 +304,7 @@ func run(cmd *cobra.Command, argv []string) {
" - Details: %s\n",
str, reason.Summary(), reason.Details())
}
str = fmt.Sprintf("%s"+"```\n", str)
str = fmt.Sprintf("%s\n", str)

// Print short cluster description:
fmt.Print(str)
Expand Down

0 comments on commit caf7049

Please sign in to comment.