From c117fd5b61c28c42636a9fb42b4c7461410e1bbd Mon Sep 17 00:00:00 2001 From: MattTheTekie <94870997+MattTheTekie@users.noreply.github.com> Date: Fri, 6 Oct 2023 12:44:38 -0400 Subject: [PATCH] Update test.py --- test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.py b/test.py index 35c4017..c7348a4 100644 --- a/test.py +++ b/test.py @@ -64,8 +64,8 @@ def blogquest(): html_content = html_file.read() title_start = html_content.find('

') + len('

') title_end = html_content.find('

') - author_start = html_content.find('

') + len('

') - author_end = html_content.find('

') + author_start = html_content.find('') + author_end = html_content.find('--->') # Extract the blog title blog_title = html_content[title_start:title_end]