Skip to content

Commit 208a070

Browse files
authored
Merge pull request #8 from cisagov/maintenance/change_csv_url
Update Default CSV URL
2 parents e568580 + 4461397 commit 208a070

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/vdp_scanner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def get_local_csv(file: str) -> List[Dict[str, str]]:
243243
def get_remote_csv() -> List[Dict[str, str]]:
244244
"""Load domains from the CSV at the given URL."""
245245
resp = requests.get(
246-
"https://raw.githubusercontent.com/GSA/data/master/dotgov-domains/current-federal.csv"
246+
"https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-federal.csv"
247247
)
248248
if resp.status_code != 200:
249249
return []

src/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.1"
1+
__version__ = "0.0.2"

0 commit comments

Comments
 (0)