Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Chahed committed Nov 5, 2015
1 parent 8146dad commit 6c7f4cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scraper.py
Expand Up @@ -81,7 +81,7 @@ def Detail_left_fc(htmltext):
Description=BeautifulSoup(Description).text
Description=Description.strip(', ')
Description=suittext(Description)
Description=Description.encode('ascii','ignore')
Description=Description.strip('u')
return Description

def Description_awarded(htmltext):
Expand All @@ -93,7 +93,7 @@ def Description_awarded(htmltext):
Description=BeautifulSoup(Description).text
Description=Description.strip(', ')
Description=suittext(Description)
Description=Description.encode('ascii','ignore')
Description=Description.strip('u')
return Description


Expand Down

0 comments on commit 6c7f4cf

Please sign in to comment.