toujours pas stable

This commit is contained in:
piair 2023-07-02 19:26:24 +02:00
parent a9dcb7726c
commit ad80de0c04
2 changed files with 4 additions and 3 deletions

View File

@ -45,8 +45,9 @@ scheduler.add_job( # on relance le job
def start_ms(i): def start_ms(i):
print("\033[32m" + f"Starting config {i}" + "\033[0m") print("\033[32m" + f"Starting config {i}" + "\033[0m")
subprocess.Popen(["python3",'-u' ,"/app/MsRewards-Reborn/V6.py", "-c", i, "&>>", f"/app/user_data/logs/{i}.txt"]) log = open(f"/app/user_data/logs/{i}.txt", 'a') # so that data written to it will be appended
subprocess.Popen(["python3",'-u' ,"/app/MsRewards-Reborn/V6.py", "-c", i], stdout=log, stderr=log, shell=True)
log.close()

View File

@ -1 +1 @@
v6.0.6 v6.0.7