From 1a652674c9aefdbd10defdb56338335bdffbde55 Mon Sep 17 00:00:00 2001 From: rundrund Date: Sat, 5 May 2018 22:12:49 +0800 Subject: [PATCH] Update scraper.py --- scraper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scraper.py b/scraper.py index d8a59f6..c2953b8 100644 --- a/scraper.py +++ b/scraper.py @@ -40,5 +40,5 @@ header = soup.find('h2', text="Current Agenda") agenda_table = header.find_next_siblings() for line in agenda_table: -for row in line.find_all('a'): -print row + for row in line.find_all('a'): + print row