Skip to content

Commit

Permalink
Plugins: Fix, this can be "None"
Browse files Browse the repository at this point in the history
* Also the called function does it on its own anyway.

* This fixes old shapely before 1.8 on Linux at least.
  • Loading branch information
kayhayen committed Feb 8, 2023
1 parent d83b0ba commit c2d93eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nuitka/plugins/standard/DllFilesPlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def _handleDllConfigByCode(self, dll_config, full_name, dest_path, count):
yield self._handleDllConfigByCodeResult(
filename=filename,
full_name=full_name,
dest_path=os.path.normpath(dest_path),
dest_path=dest_path,
executable=dll_config.get("executable", "no") == "yes",
)

Expand Down

0 comments on commit c2d93eb

Please sign in to comment.