Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbradshaw committed Apr 5, 2017
1 parent 0ba5186 commit 363e94f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.py
Expand Up @@ -57,7 +57,7 @@
for rownumber in range(15, sheet.nrows):
print rownumber
for column in range(1,sheet.ncols):
record[keys[column]] = str(sheet.row_values(rownumber)[column])
record[str(keys[column])] = str(sheet.row_values(rownumber)[column])
id+=1
record['id'] = id
print "---", record
Expand Down

0 comments on commit 363e94f

Please sign in to comment.