Skip to content

Commit

Permalink
fixup stdout output format
Browse files Browse the repository at this point in the history
  • Loading branch information
daamien committed May 26, 2023
1 parent 182a382 commit 7689a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rsscombine.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ func main() {
log.Printf("Rendered RSS with %v items", len(combinedFeed.Items))
// if no S3 bucket is defined, simply print the feed on standard output
if len(bucket) == 0 {
fmt.Printf(atom)
fmt.Print(atom)
return
}
// Upload the feed to S3
Expand Down

0 comments on commit 7689a87

Please sign in to comment.