Is there something wrong with the paraview-config.cmake file on master?

I’m trying to find ParaView using find_package(ParaView COMPONENTS ParaView::PythonCatalyst REQUIRED) but am getting the following CMake error:

Could not find the ParaView package with the following required components:
ParaView::PythonCatalyst.

I’m using ParaView master as of today. Any ideas what’s wrong?

The component names do not have the ParaView:: prefix. Use find_package(ParaView COMPONENTS PythonCatalyst).