packer: Ui.Message should Fprint, not Fprintf

This commit is contained in:
Mitchell Hashimoto 2013-06-23 23:06:59 -07:00
parent 4fb31f1cab
commit 58e677d112
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ func (rw *ReaderWriterUi) Message(message string) {
defer rw.l.Unlock()
log.Printf("ui: %s", message)
_, err := fmt.Fprintf(rw.Writer, message+"\n")
_, err := fmt.Fprint(rw.Writer, message+"\n")
if err != nil {
panic(err)
}