summaryrefslogtreecommitdiff
path: root/table.go
diff options
context:
space:
mode:
Diffstat (limited to 'table.go')
-rw-r--r--table.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/table.go b/table.go
index 37e4019..d6bcb04 100644
--- a/table.go
+++ b/table.go
@@ -2,16 +2,14 @@
package ENV
-import (
- "go.wit.com/log"
-)
+import "fmt"
func PrintTable() string {
t := envPB.MakeTable("ENV table")
// limit the number of lines
t.PrintTable()
- return log.Sprintf("ENV: total=(%d)", envPB.Len())
+ return fmt.Sprintf("ENV: total=(%d)", envPB.Len())
}
func (pb *Keys) MakeTable(name string) *KeysTable {