From 36a4f64db6f89d0ea020f8a52cb5ad5f8507e081 Mon Sep 17 00:00:00 2001 From: Tim-Oliver Husser Date: Mon, 18 Dec 2023 16:10:31 +0100 Subject: [PATCH 1/2] fixed bug --- pyobs_fli/flidriver.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyobs_fli/flidriver.pyx b/pyobs_fli/flidriver.pyx index 6f931c9..f369ebd 100644 --- a/pyobs_fli/flidriver.pyx +++ b/pyobs_fli/flidriver.pyx @@ -493,7 +493,7 @@ cdef class FliDriver: cdef char name[100] # get it - res = FLIGetFilterName(self._device, name, 100) + res = FLIGetFilterName(self._device, pos, name, 100) if res != 0: raise ValueError('Could not fetch filter name.') From 9d0f2291a9d9202d99ca3b0202b28549c3173ac7 Mon Sep 17 00:00:00 2001 From: Tim-Oliver Husser Date: Mon, 18 Dec 2023 16:10:41 +0100 Subject: [PATCH 2/2] v1.3.4 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d24764c..68ca321 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyobs-fli" -version = "1.3.3" +version = "1.3.4" description = "pyobs module for FLI cameras" authors = ["Tim-Oliver Husser "] license = "MIT"