Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmaloney committed Aug 11, 2019
1 parent 6bd3b24 commit 3fcb788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.py
Expand Up @@ -35,7 +35,7 @@ def scrape_data():
fights_table = soup.find('table', {
"class": "b-fight-details__table b-fight-details__table_style_margin-top b-fight-details__table_type_event-details js-fight-table"})

all_rows = fights_table.find_all('tr', {"class": "b-fight-details__table-row b-fight-details__table-row__hover js-fight-details-click"})
all_rows = fights_table.find_all('tr')

for row in all_rows:

Expand Down

0 comments on commit 3fcb788

Please sign in to comment.