Skip to content
This repository has been archived by the owner on Jan 20, 2021. It is now read-only.

Commit

Permalink
Remove debug print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieugrieger committed May 19, 2015
1 parent 0af6a94 commit 6415a59
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion service_youtube.go
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,6 @@ func NewYouTubePlaylist(user, id string) (*YouTubePlaylist, error) {
timestampExp := regexp.MustCompile(`P(?P<days>\d+D)?T(?P<hours>\d+H)?(?P<minutes>\d+M)?(?P<seconds>\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]
Expand Down

0 comments on commit 6415a59

Please sign in to comment.