Skip to content

Commit

Permalink
Merge pull request #8 from hahnicity/patch-1
Browse files Browse the repository at this point in the history
Update symbols so that bs4 warning won't pop up
  • Loading branch information
skillachie committed Sep 6, 2015
2 parents a854559 + d22bc98 commit ed8f6b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion finsymbols/symbols.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

def get_sp500_symbols():
page_html = wiki_html('List_of_S%26P_500_companies','SP500.html')
wiki_soup = BeautifulSoup(page_html)
wiki_soup = BeautifulSoup(page_html, "html.parser")
symbol_table = wiki_soup.find(attrs={'class': 'wikitable sortable'})

symbol_data_list = list()
Expand Down

0 comments on commit ed8f6b8

Please sign in to comment.