mirror of
https://github.com/rclone/rclone.git
synced 2025-12-06 00:03:32 +00:00
build_csv: fix output of control characters
This commit is contained in:
@@ -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, "", "", "", "", "", "", "", "", "")
|
||||
|
||||
Reference in New Issue
Block a user