This commit is contained in:
dengrb1
2023-05-05 18:06:59 +08:00
committed by GitHub
parent 9f10488060
commit 84cf0deead
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ def is_connected():
return False
def open_exe(exe_name):
ml = os.getcwd()
if os.path.exists(ml, f"{exe_name}.exe"):
if os.path.exists(os.path.join(ml, f"{exe_name}.exe")):
os.system(f"start {exe_name}.exe")
else:
pass