Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
danozgriff committed May 13, 2016
1 parent 6ec0d57 commit 4d1cdb9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scraper.py
Expand Up @@ -25,9 +25,9 @@

if headers==1:
if cnt == 0:
DWT = tuple[2].strip(' ') #int
DWT = int(tuple[2].strip(' '))
elif cnt == 1:
AGENT = tuple[2].strip(' ') #int
AGENT = int(tuple[2].strip(' '))
elif cnt == 2:
ETA = int(tuple[2].strip(' '))
elif cnt == 3:
Expand All @@ -45,7 +45,8 @@
elif cnt == 9:
POB = int(tuple[2].strip(' '))
elif cnt == 10:
TUGS = int(tuple[2].strip(' '))
TUGS = int(tuple[2].strip(' ')) #int
print 'tugs' + TUGS
elif cnt == 11:
BPN_DPN = int(tuple[2].strip(' '))
elif cnt == 12:
Expand Down

0 comments on commit 4d1cdb9

Please sign in to comment.