summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doPatch.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/doPatch.go b/doPatch.go
index 6620e92..5fc54ed 100644
--- a/doPatch.go
+++ b/doPatch.go
@@ -60,7 +60,7 @@ func doPatch() error {
if argv.Patch.Get != nil {
psets := forgepb.NewPatchsets()
- newpb, _ := psets.HttpPostVerbose(myServer(), "get")
+ newpb, _, _ := psets.HttpPostVerbose(myServer(), "get")
newpb.PrintTable()
me.forge.Patchsets = newpb
me.forge.SavePatchsets()
@@ -141,7 +141,7 @@ func doPatch() error {
// for patch := range applied.IterAll() {
// log.Info("SEND APPLIED: newhash:", patch.NewHash, "commithash:", patch.CommitHash, "patch", patch.Namespace)
// }
- newpb, err := applied.HttpPostVerbose(myServer(), "applied")
+ newpb, _, err := applied.HttpPostVerbose(myServer(), "applied")
if err != nil {
return err
}