From 6415a597daa028cc2ed3d3e37035324972ea8dbc Mon Sep 17 00:00:00 2001 From: Matthieu Grieger Date: Tue, 19 May 2015 01:22:59 -0700 Subject: [PATCH] Remove debug print statement --- service_youtube.go | 1 - 1 file changed, 1 deletion(-) diff --git a/service_youtube.go b/service_youtube.go index fc321d2..b93b30a 100644 --- a/service_youtube.go +++ b/service_youtube.go @@ -358,7 +358,6 @@ func NewYouTubePlaylist(user, id string) (*YouTubePlaylist, error) { timestampExp := regexp.MustCompile(`P(?P\d+D)?T(?P\d+H)?(?P\d+M)?(?P\d+S)?`) timestampMatch := timestampExp.FindStringSubmatch(videoDuration) timestampResult := make(map[string]string) - fmt.Println(timestampExp.SubexpNames()) for i, name := range timestampExp.SubexpNames() { if i < len(timestampMatch) { timestampResult[name] = timestampMatch[i]