Removed unnecessary print

This commit is contained in:
bytedream 2021-11-01 20:25:08 +01:00
parent 19ff49b123
commit ab28e5beaa

View file

@ -2,7 +2,6 @@ package utils
import ( import (
"errors" "errors"
"fmt"
"github.com/ByteDream/crunchyroll-go" "github.com/ByteDream/crunchyroll-go"
"sync" "sync"
) )
@ -505,8 +504,6 @@ func (es *EpisodeStructure) GetEpisodeByURL(url string) (*crunchyroll.Episode, e
return nil, errors.New("invalid url") return nil, errors.New("invalid url")
} }
fmt.Println(title)
episodes, err := es.Episodes() episodes, err := es.Episodes()
if err != nil { if err != nil {
return nil, err return nil, err