1
0
mirror of https://github.com/rclone/rclone.git synced 2025-02-20 07:48:33 +02:00

info: fix control character map output

This commit is contained in:
Nick Craig-Wood 2018-11-20 14:04:27 +00:00
parent 26e2f1a998
commit e969505ae4

View File

@ -138,6 +138,7 @@ func (r *results) checkChar(c rune) {
escape := false escape := false
if err != nil { if err != nil {
fs.Infof(r.f, "Couldn't write file 0x%02X", c) fs.Infof(r.f, "Couldn't write file 0x%02X", c)
escape = true
} else { } else {
fs.Infof(r.f, "OK writing file 0x%02X", c) fs.Infof(r.f, "OK writing file 0x%02X", c)
} }