Change remote version URI

This commit is contained in:
Paul Pfeister 2024-05-20 00:51:28 -04:00
parent 07274a9a2c
commit 04ce7aa0bb
No known key found for this signature in database
GPG key ID: 70D33A96CBD7A994

View file

@ -679,10 +679,10 @@ 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/__init__.py"
)
remote_version = str(re.findall('__version__ = "(.*)"', r.text)[0])
remote_version = str(re.findall('__version__ *= *"(.*)"', r.text)[0])
local_version = __version__
if remote_version != local_version: