Skip to content

Commit

Permalink
corrected line 56
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbradshaw committed Feb 29, 2016
1 parent e8ac597 commit f270c88
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scraper.py
Expand Up @@ -52,8 +52,7 @@ def scrapetable(root):
left = text.attrib.get('left')
leftinteger = int(left)
#If leftinteger is between 96 and 99...
#see other options at http://stackoverflow.com/questions/ 618093/how-to-find-whether-anumber-
belongs-to-a-particular-range-in-python
#see other options at http://stackoverflow.com/questions/ 618093/how-to-find-whether-anumber-belongs-to-a-particular-range-in-python
#Literally: If 96 is smaller than leftinteger, AND leftinteger is smaller than 99:
if 96 < leftinteger < 99:
#Record the text of 'text' (sorry)
Expand Down

0 comments on commit f270c88

Please sign in to comment.