From 71deaaf3ecb0e0867b7cafecbb9bf32da8f267a3 Mon Sep 17 00:00:00 2001
From: Jan David Mol <mol@astron.nl>
Date: Mon, 2 May 2022 11:03:49 +0200
Subject: [PATCH] L2SS-769: Remove reference to non-existing member

---
 tangostationcontrol/tangostationcontrol/devices/beam_device.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tangostationcontrol/tangostationcontrol/devices/beam_device.py b/tangostationcontrol/tangostationcontrol/devices/beam_device.py
index 4072ef384..0ef253508 100644
--- a/tangostationcontrol/tangostationcontrol/devices/beam_device.py
+++ b/tangostationcontrol/tangostationcontrol/devices/beam_device.py
@@ -328,7 +328,7 @@ class BeamTracker():
             return
 
         self.done = False
-        self.thread = Thread(target=self._update_pointing_direction, name=f"BeamTracker of {self.device.get_name()}")
+        self.thread = Thread(target=self._update_pointing_direction, name="BeamTracker")
         self.thread.start()
 
         logger.info("BeamTracking thread started")
-- 
GitLab