Skip to content

Commit

Permalink
Remove creationTimestamp leading spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
hiddeco committed Oct 1, 2020
1 parent b228605 commit da0f7b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/gotk/export.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func init() {
}

func resourceToString(data []byte) string {
data = bytes.Replace(data, []byte("creationTimestamp: null\n"), []byte(""), 1)
data = bytes.Replace(data, []byte(" creationTimestamp: null\n"), []byte(""), 1)
data = bytes.Replace(data, []byte("status: {}\n"), []byte(""), 1)
return string(data)
}

0 comments on commit da0f7b0

Please sign in to comment.