diff options
| author | Jeff Carr <[email protected]> | 2025-10-27 18:39:18 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-27 18:39:18 -0500 |
| commit | 4b096312a8ad49d0079242dc274c7c4a8a2cb31a (patch) | |
| tree | 3621600ec15dc43ae552dbd45fe5d926c7cf2722 /argv.Print.go | |
| parent | 8a0353dfd94e24d2b1a67a2b5c1cdac37c91ad35 (diff) | |
trying to fix helpv0.0.48
Diffstat (limited to 'argv.Print.go')
| -rw-r--r-- | argv.Print.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/argv.Print.go b/argv.Print.go index 2d7ea80..7c89404 100644 --- a/argv.Print.go +++ b/argv.Print.go @@ -20,7 +20,7 @@ func Debugf(fmts string, parts ...any) { fmts = strings.TrimSpace(fmts) fmts += "\n" // me.pb.Stderr += fmt.Sprintf(fmts, parts...) - fmt.Fprintf(Stderr, fmts, parts...) + fmt.Fprintf(Stddbg, fmts, parts...) } // print out auto complete debugging info @@ -77,10 +77,10 @@ func PrintStderr() { } fmt.Fprintf(os.Stderr, "\n") for _, line := range lines { - line = strings.TrimSpace(line) - if line == "" { - continue - } + // line = strings.TrimSpace(line) + // if line == "" { + // continue + // } fmt.Fprintf(os.Stderr, "%s\n", line) } fmt.Fprintf(os.Stderr, "\n") |
