From 953b64ad061b3f677134b987c2bc395c39bd19b9 Mon Sep 17 00:00:00 2001 From: Lars Amsel Date: Wed, 10 Jun 2020 15:29:44 +0200 Subject: uhd: cal: Fix function binding in Python cal data container class --- host/lib/cal/cal_python.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host/lib') diff --git a/host/lib/cal/cal_python.hpp b/host/lib/cal/cal_python.hpp index bf1975416..513dda344 100644 --- a/host/lib/cal/cal_python.hpp +++ b/host/lib/cal/cal_python.hpp @@ -75,7 +75,7 @@ void export_cal(py::module& m) py::class_>(m, "container") .def("get_name", &container::get_name) .def("get_serial", &container::get_serial) - .def("get_timestamp", &container::get_name) + .def("get_timestamp", &container::get_timestamp) .def("serialize", [](std::shared_ptr& self) { return vector_to_pybytes(self->serialize()); -- cgit v1.2.3