1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-07-02 12:20:03 +08:00
License: MIT
Signed-off-by: Brian Tiger Chow <brian@perfmode.com>
This commit is contained in:
Brian Tiger Chow
2014-11-13 21:11:51 -08:00
committed by Juan Batiz-Benet
parent 476aab9552
commit 65eb1d86fa

View File

@ -13,9 +13,6 @@ import (
tour "github.com/jbenet/go-ipfs/tour"
)
// TODO the parent function now uses tourOutput. Migrate the children to also
// use the tourOutput struct
var tourCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "An introduction to IPFS",
@ -149,7 +146,7 @@ var cmdIpfsTourList = &cmds.Command{
var w bytes.Buffer
fprintTourList(&w, tour.TopicID(cfg.Tour.Last))
w.WriteTo(os.Stdout) // TODO use res.SetOutput(output)
w.WriteTo(os.Stdout)
return nil, nil
},
}