Skip to content

Commit

Permalink
+= 1 not ++ in python
Browse files Browse the repository at this point in the history
  • Loading branch information
edrandall committed May 30, 2016
1 parent 1f83ddb commit eecc578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def scrapeEpicollectXMLData(dataSetId, srcUrl):
data['site_name'] = entry.find('AddOutFDesc').text
data['lat'] = entry.find('PWSI_GPS_lat').text
data['lon'] = entry.find('PWSI_GPS_lon').text
rowsSaved++
rowsSaved += 1
print "Dataset: ",dataSetId," saved: ",rowsSaved," rows"
return rowsSaved

Expand Down

0 comments on commit eecc578

Please sign in to comment.