Skip to content

Commit

Permalink
Merge pull request #174 from benjwadams/mark_deployment_inactive_remove
Browse files Browse the repository at this point in the history
Fixup one-off error in CSV header skip
  • Loading branch information
benjwadams authored Oct 22, 2020
2 parents 5eac474 + 7281f8d commit 83b57ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build_erddap_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def inactive_datasets(deployments_set):
timeout=10)
resp.raise_for_status()
# contents of erddap datasets
erddap_contents_set = set(resp.text.splitlines()[4:])
erddap_contents_set = set(resp.text.splitlines()[3:])
except (requests.Timeout, requests.HTTPError, IndexError):
erddap_contents_set = set()

Expand Down

0 comments on commit 83b57ff

Please sign in to comment.