Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Mar 29, 2024
1 parent 4fb0994 commit a3bf94c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sherlock/sherlock.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ def main():
# Check for newer version of Sherlock. If it exists, let the user know about it
try:
r = requests.get(
"https://Raw.GitHubUserContent.Com/sherlock-project/sherlock/master/sherlock/sherlock.py"
"https://raw.githubusercontent.com/sherlock-project/sherlock/master/sherlock/sherlock.py"
)

remote_version = str(re.findall('__version__ = "(.*)"', r.text)[0])
Expand Down
2 changes: 1 addition & 1 deletion sherlock/sites.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def __init__(self, data_file_path=None):
# The default data file is the live data.json which is in the GitHub repo. The reason why we are using
# this instead of the local one is so that the user has the most up-to-date data. This prevents
# users from creating issue about false positives which has already been fixed or having outdated data
data_file_path = "https://Raw.GitHubUserContent.Com/sherlock-project/sherlock/master/sherlock/resources/data.json"
data_file_path = "https://raw.githubusercontent.com/sherlock-project/sherlock/master/sherlock/resources/data.json"

# Ensure that specified data file has correct extension.
if not data_file_path.lower().endswith(".json"):
Expand Down

0 comments on commit a3bf94c

Please sign in to comment.