Update pagebot.py

This commit is contained in:
majmongoose 2024-10-25 11:09:54 -04:00
parent d990773319
commit 43f8b3869e

View File

@ -99,7 +99,7 @@ def kill_existing_ttd_instances():
"""Terminate all running instances of TTD."""
for proc in psutil.process_iter(['name', 'exe', 'cmdline']):
try:
if 'ttd' in proc.name().lower() or 'ttd' in ' '.join(proc.cmdline()).lower():
if 'twotone' in proc.name().lower() or 'twotone' in ' '.join(proc.cmdline()).lower():
print("Terminating an existing instance of TTD...")
proc.terminate() # Send SIGTERM
proc.wait() # Wait for the process to terminate