diff --git a/getarticles.go b/getarticles.go index e8329c2..8460603 100644 --- a/getarticles.go +++ b/getarticles.go @@ -228,8 +228,6 @@ func getArticles(feedURL string, max int, noExcerpt bool) (string, error) { description = "" // Fill article description/content with the fragments separated by one newline. for _, line := range fragments { - l := len(line) - println("Fragment: ", line, l) // Only if the only content is not "> ", thank you reddit. if line != "> " { description = description + line + "\n"