Skip to content

Commit

Permalink
Merge pull request #228 from invidian/fix-newline
Browse files Browse the repository at this point in the history
pkg/container: fix missing newline in fmt.Printf
  • Loading branch information
invidian authored Feb 26, 2021
2 parents b37674d + 718eeab commit ef0532a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/container/hostconfiguredcontainer.go
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ func (m *hostConfiguredContainer) withConfigurationContainer(action func() error

defer func() {
if err := m.removeConfigurationContainer(); err != nil {
fmt.Printf("Removing configuration container failed: %v", err)
fmt.Printf("Removing configuration container failed: %v\n", err)
}
}()

Expand Down

0 comments on commit ef0532a

Please sign in to comment.