Minor stuff

main
Óscar M. Lage 2024-10-14 16:52:23 +02:00
parent 2503bc9ebb
commit d8a4bfd6f3
2 changed files with 1 additions and 2 deletions

View File

@ -29,7 +29,7 @@ func ProcessBooks(books []Book, update bool) error {
fmt.Printf(" B O O K S\n")
utils.Sep()
for _, book := range books {
fmt.Printf("Title: %s, Author: %s, ID: %s\n", book.Title, book.Author, book.ID)
fmt.Printf("Title: %s\n", book.Title)
// If we're updating, the process is a bit different
if update || !book.New {

View File

@ -101,7 +101,6 @@ func ProcessSeries(series []Serie, update bool) error {
}
}
}
// utils.Debug(serie)
err = generateSerieMarkdown(serie)
if err != nil {