Skip to content

Commit

Permalink
Use same language as similar error handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
apiology committed Sep 25, 2022
1 parent f395e2f commit 6ebaea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update_prevalence.py
Original file line number Diff line number Diff line change
Expand Up @@ -1617,7 +1617,7 @@ def main() -> None:
for key, appdata in county_data.items():
app_locations[key] = appdata
except ValueError as e:
print_and_log_to_sentry(f"Couldn't calculate {state}: {e}")
print_and_log_to_sentry(f"Discarding state-level data from {state} due to error: {e}")

# calculator expects all subdivisions to have data populated
if state.app_key in app_locations[country.app_key].subdivisions:
Expand Down

0 comments on commit 6ebaea2

Please sign in to comment.