From 7729e47685cf38c098ab7dff7e92268cd8828868 Mon Sep 17 00:00:00 2001 From: Erik Frojdh Date: Mon, 16 Jan 2023 12:01:15 +0100 Subject: [PATCH] also for rx_hostname --- python/slsdet/detector.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/slsdet/detector.py b/python/slsdet/detector.py index 4e9d89868..efd08cc78 100755 --- a/python/slsdet/detector.py +++ b/python/slsdet/detector.py @@ -780,7 +780,8 @@ class Detector(CppDetectorApi): @rx_hostname.setter def rx_hostname(self, hostname): - self.setRxHostname(hostname) + args = hostname_list(hostname) + self.setRxHostname(args) @property @element