diff options
| author | Chris Lu <chris.lu@gmail.com> | 2014-04-15 09:20:28 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2014-04-15 09:20:28 -0700 |
| commit | cb56322937904f4fe2e9aee37f1752ed27c30645 (patch) | |
| tree | adbf5efa0bfcd324826ae4a5dafdbe500b3d9401 /go | |
| parent | 68021c6fc30c7322ff47a9b3cad01390679017e2 (diff) | |
| download | seaweedfs-cb56322937904f4fe2e9aee37f1752ed27c30645.tar.xz seaweedfs-cb56322937904f4fe2e9aee37f1752ed27c30645.zip | |
minor textual change
Diffstat (limited to 'go')
| -rw-r--r-- | go/operation/delete_content.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/go/operation/delete_content.go b/go/operation/delete_content.go index 380312053..e4f9d39bb 100644 --- a/go/operation/delete_content.go +++ b/go/operation/delete_content.go @@ -84,13 +84,13 @@ func DeleteFiles(master string, fileIds []string) (*DeleteFilesResult, error) { } jsonBlob, err := util.Post("http://"+server+"/delete", values) if err != nil { - ret.Errors = append(ret.Errors, err.Error()+"\n"+string(jsonBlob)) + ret.Errors = append(ret.Errors, err.Error()+" "+string(jsonBlob)) return } var result []DeleteResult err = json.Unmarshal(jsonBlob, &result) if err != nil { - ret.Errors = append(ret.Errors, err.Error()+"\n"+string(jsonBlob)) + ret.Errors = append(ret.Errors, err.Error()+" "+string(jsonBlob)) return } ret.Results = append(ret.Results, result...) |
