1
0
镜像自地址 https://github.com/tuna/tunasync.git 已同步 2025-12-06 14:36:47 +00:00

Use fmt.Println for cli JSON output

这个提交包含在:
Phy
2020-03-23 10:19:55 -04:00
父节点 a44891d3e8
当前提交 5c01e3fa22

查看文件

@@ -135,7 +135,7 @@ func listWorkers(c *cli.Context) error {
err.Error()),
1)
}
fmt.Print(string(b))
fmt.Println(string(b))
return nil
}
@@ -185,7 +185,7 @@ func listJobs(c *cli.Context) error {
fmt.Sprintf("Error printing out informations: %s", err.Error()),
1)
}
fmt.Print(string(b))
fmt.Println(string(b))
return nil
}