From 49e0e45d8f6c26315bbaf7ed11abfca9a690453a Mon Sep 17 00:00:00 2001 From: Christoph Polcin Date: Tue, 15 May 2018 11:51:59 +0200 Subject: [PATCH] fmt --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index c0fef68..b8e99c0 100644 --- a/client.go +++ b/client.go @@ -200,7 +200,7 @@ func (c *Client) RemoveAll(path string) error { } rs.Body.Close() - if rs.StatusCode == 200 || rs.StatusCode == 204 || rs.StatusCode == 404 { + if rs.StatusCode == 200 || rs.StatusCode == 204 || rs.StatusCode == 404 { return nil } else { return newPathError("Remove", path, rs.StatusCode)