From 0f4a46bf3757946e4b1fc97583569bdfeb8125da Mon Sep 17 00:00:00 2001 From: BarsTiger Date: Fri, 23 Apr 2021 14:01:45 +0300 Subject: [PATCH] 1 --- KOTIKOT_launcher.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/KOTIKOT_launcher.py b/KOTIKOT_launcher.py index f67dbcf..afe644c 100644 --- a/KOTIKOT_launcher.py +++ b/KOTIKOT_launcher.py @@ -3,6 +3,7 @@ import urllib.request, os launchfolder = os.getcwd() offprojects = launchfolder + "\OfficialProjects" launcherfiles = launchfolder + "\!LAUNCHERFILES" +launchergithuburl = "https://raw.githubusercontent.com/BarsTiger/KOTIKOTapps_download_repo/master/KOTIKOT_launcher.py" ################### Checking folders ##################### if not os.path.exists(offprojects): @@ -11,4 +12,5 @@ if not os.path.exists(offprojects): if not os.path.exists(launcherfiles): os.mkdir(launcherfiles) - +################### Updataing launcher ##################### +urllib.request.urlretrieve(launchergithuburl, "KOTIKOT_launcher.py")