From 28b97da190971cd164674893476715938bc09b3b Mon Sep 17 00:00:00 2001 From: MattTheTekie <94870997+MattTheTekie@users.noreply.github.com> Date: Fri, 6 Oct 2023 11:31:37 -0400 Subject: [PATCH] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 655fc31..6b645e0 100644 --- a/test.py +++ b/test.py @@ -79,7 +79,7 @@ def blogquest(): date_end = html_content.find('', date_start) # Use the default date if no date is found - blog_date = '01/01/2023' if date_start == -1 or date_end == -1 else html_content[date_start:date_end] +# blog_date = '01/01/2023' if date_start == -1 or date_end == -1 else html_content[date_start:date_end] # Extract the blog title blog_title = html_content[title_start:title_end]