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