aboutsummaryrefslogtreecommitdiffstats
path: root/bug/label.go
diff options
context:
space:
mode:
Diffstat (limited to 'bug/label.go')
-rw-r--r--bug/label.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/bug/label.go b/bug/label.go
index c202cd70..889bf455 100644
--- a/bug/label.go
+++ b/bug/label.go
@@ -1,3 +1,7 @@
package bug
type Label string
+
+func (l Label) String() string {
+ return string(l)
+}