fix(cli): fixes missplaced %

This commit is contained in:
bergquist 2016-04-19 14:46:03 +02:00
parent 4e8396dbce
commit ff22f43002

View File

@ -166,7 +166,7 @@ func downloadFile(pluginName, filePath, url string) (err error) {
src, err := zf.Open() src, err := zf.Open()
if err != nil { if err != nil {
log.Errorf("%Failed to open zipfile: v", err) log.Errorf("Failed to extract file: %v", err)
} }
io.Copy(dst, src) io.Copy(dst, src)