Update launcher.py

This commit is contained in:
McCloudS
2024-11-30 11:29:59 -07:00
parent d25c263c91
commit 667dd8f9fc
2 changed files with 2 additions and 1 deletions

View File

@@ -154,6 +154,7 @@ def main():
if not os.path.exists(f'subgen{script_name}') or args.update or convert_to_bool(os.getenv('UPDATE')):
print(f"Downloading subgen.py from GitHub branch {branch_name}...")
download_from_github(f"https://raw.githubusercontent.com/McCloudS/subgen/{branch_name}/subgen.py", f'subgen{script_name}')
download_from_github(f"https://raw.githubusercontent.com/McCloudS/subgen/{branch_name}/language_code.py", f'language_code{script_name}')
else:
print("subgen.py exists and UPDATE is set to False, skipping download.")

View File

@@ -1,4 +1,4 @@
subgen_version = '2024.11.32'
subgen_version = '2024.11.35'
from language_code import LanguageCode
from datetime import datetime