forked from TrueCloudLab/rclone
build_csv: fix output of control characters
This commit is contained in:
parent
d122d1d191
commit
3e53376a49
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ func main() {
|
|||
k := charsMap[c]
|
||||
row := []string{fmt.Sprintf("%X", c), k}
|
||||
for _, r := range remoteNames {
|
||||
if m, ok := recordsMap[k][r]; ok {
|
||||
if m, ok := recordsMap[c][r]; ok {
|
||||
row = append(row, m...)
|
||||
} else {
|
||||
row = append(row, "", "", "", "", "", "", "", "", "")
|
||||
|
|
Loading…
Reference in a new issue