From a58bec0201d50c210dae79222e6efca04bfb5347 Mon Sep 17 00:00:00 2001 From: Markus Zolliker Date: Fri, 5 Jun 2026 15:45:21 +0200 Subject: [PATCH] fix typo in frappy_psi/softcal.py --- frappy_psi/softcal.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frappy_psi/softcal.py b/frappy_psi/softcal.py index 81c035e5..816ab82d 100644 --- a/frappy_psi/softcal.py +++ b/frappy_psi/softcal.py @@ -113,7 +113,7 @@ class CalCurve: calibname = sensopt.pop(0) _, dot, ext = basename(calibname).rpartition('.') kind = None - pathlist = os.environ.get('FRAPPY_CALIB_PATH', '').replace(',' ' ').split(' ') + pathlist = os.environ.get('FRAPPY_CALIB_PATH', '').replace(',', ' ').split(' ') pathlist.append(join(dirname(__file__), 'calcurves')) for path in pathlist: # first try without adding kind @@ -296,4 +296,3 @@ class Function(Readable): @nopoll def read_status(self): return self._get_status(self.rawsensor.read_status()) - \ No newline at end of file