Files
legacy/modules/unerrored.py
2022-01-27 19:46:10 +02:00

25 lines
378 B
Python

import threading
import subprocess
import time
def run(func, *args):
try:
subprocess.Popen(func, *args, shell=True)
except:
time.sleep(5)
def run_threaded(func, *args):
try:
threading.Thread(target=func, args=args).start()
except:
time.sleep(5)
def run_old(func, *args):
try:
func(args)
except:
pass