From e5ad564af4d9ad2d86c3a6b12226bd257dd1a4b0 Mon Sep 17 00:00:00 2001 From: David Howden Date: Tue, 19 May 2015 22:10:04 +1000 Subject: [PATCH] Added Lyrics output to tag tool --- tag/tag.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tag/tag.go b/tag/tag.go index 8cad726..c389a75 100644 --- a/tag/tag.go +++ b/tag/tag.go @@ -75,4 +75,5 @@ func printMetadata(m tag.Metadata) { fmt.Printf(" Disc: %v of %v\n", disc, discCount) fmt.Printf(" Picture: %v\n", m.Picture()) + fmt.Printf(" Lyrics: %v\n", m.Lyrics()) }