Skip to content

Commit

Permalink
Merge pull request #8 from cisagov/maintenance/change_csv_url
Browse files Browse the repository at this point in the history
Update Default CSV URL
  • Loading branch information
mcdonnnj authored Apr 26, 2021
2 parents e568580 + 4461397 commit 208a070
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vdp_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def get_local_csv(file: str) -> List[Dict[str, str]]:
def get_remote_csv() -> List[Dict[str, str]]:
"""Load domains from the CSV at the given URL."""
resp = requests.get(
"https://raw.githubusercontent.com/GSA/data/master/dotgov-domains/current-federal.csv"
"https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-federal.csv"
)
if resp.status_code != 200:
return []
Expand Down
2 changes: 1 addition & 1 deletion src/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.1"
__version__ = "0.0.2"

0 comments on commit 208a070

Please sign in to comment.