From bbb85f069133e994a1c4621ea512e18c9eee18bf Mon Sep 17 00:00:00 2001 From: Rajat Jindal Date: Sun, 18 Feb 2018 18:30:06 -0800 Subject: [PATCH] remove print statement --- bash_completions.go | 1 - 1 file changed, 1 deletion(-) diff --git a/bash_completions.go b/bash_completions.go index 24911206..68dbf149 100644 --- a/bash_completions.go +++ b/bash_completions.go @@ -473,7 +473,6 @@ func gen(buf *bytes.Buffer, cmd *Command) { // GenBashCompletion generates bash completion file and writes to the passed writer. func (c *Command) GenBashCompletion(w io.Writer) error { - fmt.Println("called") buf := new(bytes.Buffer) writePreamble(buf, c.Name()) if len(c.BashCompletionFunction) > 0 {