diff options
Diffstat (limited to 'kvmd/plugins/hid/serial.py')
-rw-r--r-- | kvmd/plugins/hid/serial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/hid/serial.py b/kvmd/plugins/hid/serial.py index 9a5995e9..6f8132e4 100644 --- a/kvmd/plugins/hid/serial.py +++ b/kvmd/plugins/hid/serial.py @@ -302,7 +302,7 @@ class Plugin(BaseHid, multiprocessing.Process): # pylint: disable=too-many-inst logger.info("Started HID pid=%d", os.getpid()) signal.signal(signal.SIGINT, signal.SIG_IGN) - setproctitle.setproctitle("[hid] " + setproctitle.getproctitle()) + setproctitle.setproctitle(f"kvmd/hid: {setproctitle.getproctitle()}") while not self.__stop_event.is_set(): try: |