Try fix restart loop

This commit is contained in:
tema 2022-10-09 15:24:23 +03:00
parent 75cd457e0b
commit e3e8c02174
Signed by: tema
GPG Key ID: 21FDB6D162488F6F

View File

@ -19,4 +19,6 @@ class Update:
@staticmethod @staticmethod
def restart_bot(): def restart_bot():
os.execvp(sys.executable, [sys.executable, sys.argv[0]]) if sys.argv[1] == 'restart':
return
os.execvp(sys.executable, [sys.executable, sys.argv[0], 'restart'])