diff --git a/poetry_pyinstaller_plugin/plugin.py b/poetry_pyinstaller_plugin/plugin.py index dcbe7d6..34e30f5 100644 --- a/poetry_pyinstaller_plugin/plugin.py +++ b/poetry_pyinstaller_plugin/plugin.py @@ -237,7 +237,7 @@ def build(self, raise def bundle_wheel(self, io): - wheels = glob.glob("*-py3-none-any.whl", root_dir="dist") + wheels = _glob("*-py3-none-any.whl", root_dir="dist") for wheel in wheels: if self._platform and self.prog: folder_to_add = Path("dist", "pyinstaller", self._platform, self.prog)