diff options
| author | Jeff Carr <[email protected]> | 2025-10-12 04:30:43 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-12 04:30:43 -0500 |
| commit | 890782893d553cb6dfdb42368b75fa9e8e893ff5 (patch) | |
| tree | 74ae2c16e7d38669052eedb3508db8880dba5d87 /structs.go | |
| parent | 12195649cd8610533082d2cfb10568fe4c080a4d (diff) | |
moved formatting to lib/cobol
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,7 +8,7 @@ import ( "strings" "go.wit.com/dev/alexflint/arg" - "go.wit.com/lib/config" + "go.wit.com/lib/cobol" ) /* @@ -40,7 +40,7 @@ type AutoArgs struct { // print out auto complete debugging info func (pb *Auto) PrintDebug() { dur := pb.Duration.AsDuration() - pb.Debugf("AUTOCOMPLETE: arg0='%s' arg1='%s' partial='%s' cmd='%s' age=%s argv=%v\n", pb.Arg0, pb.Arg1, pb.Partial, pb.Cmd, config.FormatDuration(dur), pb.Argv) + pb.Debugf("AUTOCOMPLETE: arg0='%s' arg1='%s' partial='%s' cmd='%s' age=%s argv=%v\n", pb.Arg0, pb.Arg1, pb.Partial, pb.Cmd, cobol.FormatDuration(dur), pb.Argv) } func (pb *Auto) WriteHelp() { |
