Skip to content

Commit

Permalink
removed carrage returns from bing results
Browse files Browse the repository at this point in the history
  • Loading branch information
lkellar committed Jan 23, 2020
1 parent f125ff9 commit 66c86ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maps/scraper/geocoder/jobmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,5 +130,5 @@ def fetch_results(self):
for row in rows:
result = Result(row)
self.results.append(result)
self.address_to_geocode[result.address] = {'coord': result.coord, 'city': result.city}
self.address_to_geocode[result.address] = {'coord': result.coord, 'city': result.city.rstrip('\r')}

0 comments on commit 66c86ce

Please sign in to comment.