Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/sherlock/commit/87326e3a28b50a7f829c1331cc0f5b09130964b8 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Update __main__.py with f-strings instead of %s strings ()

pull/2050/head
Matheus Felipe 1 year ago committed by GitHub
commit 87326e3a28
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -15,7 +15,7 @@ if __name__ == "__main__":
python_version = sys.version.split()[0]
if sys.version_info < (3, 6):
print("Sherlock requires Python 3.6+\nYou are using Python %s, which is not supported by Sherlock" % (python_version))
print(f"Sherlock requires Python 3.6+\nYou are using Python {python_version}, which is not supported by Sherlock.")
sys.exit(1)
import sherlock

Loading…
Cancel
Save