mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Update reloader.py
This commit is contained in:
parent
6373af78f3
commit
45fe2ea319
@ -18,8 +18,14 @@ def restart_file():
|
|||||||
p = psutil.Process(os.getpid())
|
p = psutil.Process(os.getpid())
|
||||||
for handler in p.open_files() + p.connections():
|
for handler in p.open_files() + p.connections():
|
||||||
os.close(handler.fd)
|
os.close(handler.fd)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(e)
|
logger.error(e)
|
||||||
|
|
||||||
python = sys.executable
|
python = sys.executable
|
||||||
os.execl(python, python, *sys.argv)
|
|
||||||
|
if os.name == 'nt':
|
||||||
|
os.execv(sys.executable, ['python'] + sys.argv)
|
||||||
|
else:
|
||||||
|
os.execl(python, python, *sys.argv)
|
||||||
|
Loading…
Reference in New Issue
Block a user