summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/structs.go b/structs.go
index 86d686c..bdc43fc 100644
--- a/structs.go
+++ b/structs.go
@@ -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() {