Skip to content

Commit

Permalink
Merge pull request #232 from cisagov/bugfix/fix-broken-preload-url
Browse files Browse the repository at this point in the history
Fix broken preload URL
  • Loading branch information
jsf9k committed Dec 5, 2022
2 parents 21a5c9b + 7f40345 commit 2726e42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pshtt/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""This file defines the version of this module."""
__version__ = "0.6.8"
__version__ = "0.6.9"
2 changes: 1 addition & 1 deletion src/pshtt/pshtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -1562,7 +1562,7 @@ def load_preload_list():
utils.debug("Fetching Chrome preload list from source...", divider=True)

# Downloads the chromium preloaded domain list and sets it to a global set
file_url = "https://chromium.googlesource.com/chromium/src/net/+/master/http/transport_security_state_static.json?format=TEXT"
file_url = "https://chromium.googlesource.com/chromium/src/+/main/net/http/transport_security_state_static.json?format=TEXT"

try:
request = requests.get(file_url)
Expand Down

0 comments on commit 2726e42

Please sign in to comment.