Skip to content

Commit

Permalink
Fix module string in compiled module
Browse files Browse the repository at this point in the history
Correct the compiled module to report the correct qualified import
path.
  • Loading branch information
natelust committed Mar 16, 2023
1 parent f0d7cb1 commit a74b894
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/ip/diffim/_ipdiffimLib.cc
Expand Up @@ -47,7 +47,7 @@ namespace detail {
void wrapKernelSumVisitor(WrapperCollection &wrappers);
}
PYBIND11_MODULE(_ipdiffimLib, mod) {
lsst::utils::python::WrapperCollection wrappers(mod, "ip.diffim");
lsst::utils::python::WrapperCollection wrappers(mod, "lsst.ip.diffim");
wrappers.addInheritanceDependency("lsst.meas.base");
wrappers.addInheritanceDependency("lsst.afw.math");
wrappers.addSignatureDependency("lsst.afw.table");
Expand All @@ -73,4 +73,4 @@ PYBIND11_MODULE(_ipdiffimLib, mod) {
}
}
}
}
}

0 comments on commit a74b894

Please sign in to comment.