Revert "⚠️ note to everyone dont mess with line endings again ⚠️"

This reverts commit 444117f3ba.
This commit is contained in:
hlky 2022-08-29 13:44:39 +01:00
parent 023e9a4038
commit 33ebc61204
No known key found for this signature in database
GPG Key ID: 55A99F1E80D907D5

View File

@ -1,11 +1,11 @@
import os, time
n = 0
while True:
print('Relauncher: Launching...')
if n > 0:
print(f'\tRelaunch count: {n}')
os.system("python scripts/webui.py")
print('Relauncher: Process is ending. Relaunching in 0.5s...')
n += 1
time.sleep(0.5)
import os, time
n = 0
while True:
print('Relauncher: Launching...')
if n > 0:
print(f'\tRelaunch count: {n}')
os.system("python scripts/webui.py")
print('Relauncher: Process is ending. Relaunching in 0.5s...')
n += 1
time.sleep(0.5)