From 6bab1f47fb6c81de59f840ff916dc625da2f5553 Mon Sep 17 00:00:00 2001 From: Matt Bell Date: Sun, 2 Nov 2014 16:59:52 -0800 Subject: [PATCH] commands: Removed inpout stream from Request --- cmd/ipfs2/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/ipfs2/main.go b/cmd/ipfs2/main.go index 630e2e37a..b59c28f52 100644 --- a/cmd/ipfs2/main.go +++ b/cmd/ipfs2/main.go @@ -124,7 +124,7 @@ func main() { } func getOptions(req cmds.Request, root *cmds.Command) (cmds.Request, error) { - tempReq := cmds.NewRequest(req.Path(), req.Options(), nil, nil, nil) + tempReq := cmds.NewRequest(req.Path(), req.Options(), nil, nil) options, err := root.GetOptions(tempReq.Path()) if err != nil {