summaryrefslogtreecommitdiff
path: root/post.go
diff options
context:
space:
mode:
Diffstat (limited to 'post.go')
-rw-r--r--post.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/post.go b/post.go
index 8e56b75..5462ee3 100644
--- a/post.go
+++ b/post.go
@@ -6,7 +6,6 @@ import (
"net/http"
"os"
"os/user"
- "strings"
"go.wit.com/log"
)
@@ -35,12 +34,5 @@ func httpPost(url string, data []byte) ([]byte, error) {
log.Error(err)
return body, err
}
-
- test := strings.TrimSpace(string(body))
- log.Info("go.wit.com returned body:", test)
- if test == "OK" {
- return body, nil
- }
-
return body, nil
}