From d8a4bfd6f314ce3c045d58dd20871c0d590689a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?O=CC=81scar=20M=2E=20Lage?= Date: Mon, 14 Oct 2024 16:52:23 +0200 Subject: [PATCH] Minor stuff --- internal/books/controller.go | 2 +- internal/series/controller.go | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/books/controller.go b/internal/books/controller.go index 0b7e51a..fed54ed 100644 --- a/internal/books/controller.go +++ b/internal/books/controller.go @@ -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 { diff --git a/internal/series/controller.go b/internal/series/controller.go index 716d7c8..cbab53b 100644 --- a/internal/series/controller.go +++ b/internal/series/controller.go @@ -101,7 +101,6 @@ func ProcessSeries(series []Serie, update bool) error { } } } - // utils.Debug(serie) err = generateSerieMarkdown(serie) if err != nil {