aboutsummaryrefslogtreecommitdiffstats
path: root/bug
diff options
context:
space:
mode:
Diffstat (limited to 'bug')
-rw-r--r--bug/snapshot.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/bug/snapshot.go b/bug/snapshot.go
index 9001d2c7..7f1d6099 100644
--- a/bug/snapshot.go
+++ b/bug/snapshot.go
@@ -2,7 +2,6 @@ package bug
import (
"fmt"
- "github.com/dustin/go-humanize"
"time"
)
@@ -31,10 +30,9 @@ func (snap Snapshot) HumanId() string {
}
func (snap Snapshot) Summary() string {
- return fmt.Sprintf("C:%d L:%d %s",
+ return fmt.Sprintf("C:%d L:%d",
len(snap.Comments)-1,
len(snap.Labels),
- humanize.Time(snap.LastEdit()),
)
}