aboutsummaryrefslogtreecommitdiffstats
path: root/bug/bug.go
diff options
context:
space:
mode:
Diffstat (limited to 'bug/bug.go')
-rw-r--r--bug/bug.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/bug/bug.go b/bug/bug.go
index 3af4337e..203d5a1a 100644
--- a/bug/bug.go
+++ b/bug/bug.go
@@ -576,8 +576,12 @@ func (bug *Bug) Id() string {
// HumanId return the Bug identifier truncated for human consumption
func (bug *Bug) HumanId() string {
+ return FormatHumanID(bug.Id())
+}
+
+func FormatHumanID(id string) string {
format := fmt.Sprintf("%%.%ds", humanIdLength)
- return fmt.Sprintf(format, bug.Id())
+ return fmt.Sprintf(format, id)
}
// CreateLamportTime return the Lamport time of creation