Skip to content

Commit

Permalink
Bugfix/26 glob missing import
Browse files Browse the repository at this point in the history
With #26 the import of the glob package was removed and a custom function _glob was implemented.
This now leads to the issue: name 'glob' is not defined.
This pull request no replaces the missed replacement of glob.
  • Loading branch information
wsn-dev authored and thmahe committed Sep 3, 2024
1 parent 1a8203c commit eded038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poetry_pyinstaller_plugin/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit eded038

Please sign in to comment.