Skip to content

Commit

Permalink
Fix sequencer error newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
MacroPower committed Jun 18, 2021
1 parent 8874c44 commit 0ba6ae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sequencer/sequencer.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (s *FrameSequencer) Sequence(start, end int) {
for i := 1; i <= numFrames; i++ {
err := <-out
if err != nil {
fmt.Print(err)
fmt.Println(err)
}
}
}
Expand Down

0 comments on commit 0ba6ae2

Please sign in to comment.