We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e72fff commit 451cc53Copy full SHA for 451cc53
contrib/Installer/mtfg-ofs-extension-installer.py
@@ -68,7 +68,7 @@ def get_download_urls_with_api():
68
assets_download_urls = ([x['browser_download_url'] for x in response['assets'] if 'browser_download_url' in x])
69
program_download_url = [x for x in assets_download_urls if x.lower().endswith('.zip') and "funscript-editor" in x ]
70
if len(program_download_url) == 0:
71
- error("MTFG Release not found")
+ error("MTFG latest release not found (Try again later)")
72
73
latest = response['tag_name'].lower().replace("v", "")
74
return {latest: program_download_url[0]}, latest, response['body']
0 commit comments