mirror of
https://github.com/rclone/rclone.git
synced 2026-01-04 09:33:36 +00:00
build_csv: fix output of control characters
This commit is contained in:
@@ -101,7 +101,7 @@ func main() {
|
|||||||
k := charsMap[c]
|
k := charsMap[c]
|
||||||
row := []string{fmt.Sprintf("%X", c), k}
|
row := []string{fmt.Sprintf("%X", c), k}
|
||||||
for _, r := range remoteNames {
|
for _, r := range remoteNames {
|
||||||
if m, ok := recordsMap[k][r]; ok {
|
if m, ok := recordsMap[c][r]; ok {
|
||||||
row = append(row, m...)
|
row = append(row, m...)
|
||||||
} else {
|
} else {
|
||||||
row = append(row, "", "", "", "", "", "", "", "", "")
|
row = append(row, "", "", "", "", "", "", "", "", "")
|
||||||
|
|||||||
Reference in New Issue
Block a user