diff --git a/LauncherInstaller/Install-KOTIKOT_launcher.py b/LauncherInstaller/Install-KOTIKOT_launcher.py index 2c74f01..3766e7f 100644 --- a/LauncherInstaller/Install-KOTIKOT_launcher.py +++ b/LauncherInstaller/Install-KOTIKOT_launcher.py @@ -1,10 +1,10 @@ import urllib.request, os launchfolder = os.getcwd() -kkapps = launchfolder + "\KOTIKOT apps" +kkapps = launchfolder + "/KOTIKOT apps" if not os.path.exists(kkapps): os.mkdir(kkapps) launcherurl = 'https://raw.githubusercontent.com/BarsTiger/KOTIKOTapps_download_repo/master/KOTIKOT_launcher.py' -urllib.request.urlretrieve(launcherurl, kkapps + "\KOTIKOT_launcher.py") +urllib.request.urlretrieve(launcherurl, kkapps + "/KOTIKOT_launcher.py")