Revert "Update pagebot.py"

This reverts commit 43f8b3869e.
This commit is contained in:
majmongoose 2024-10-25 11:20:59 -04:00
parent 43f8b3869e
commit 96a4e1f5c2

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 'twotone' in proc.name().lower() or 'twotone' in ' '.join(proc.cmdline()).lower():
if 'ttd' in proc.name().lower() or 'ttd' in ' '.join(proc.cmdline()).lower():
print("Terminating an existing instance of TTD...")
proc.terminate() # Send SIGTERM
proc.wait() # Wait for the process to terminate