From 511cd9107ddc9dce245ae81473b36970f8758d22 Mon Sep 17 00:00:00 2001 From: Matt Redmond Date: Sat, 8 Apr 2023 20:45:19 -0700 Subject: [PATCH] Update Packaging-Gooey.md pathex should just be the path, on the actual python file. Tried to make this more clear with this edit. --- docs/packaging/Packaging-Gooey.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/packaging/Packaging-Gooey.md b/docs/packaging/Packaging-Gooey.md index ed03334b..68db43fa 100644 --- a/docs/packaging/Packaging-Gooey.md +++ b/docs/packaging/Packaging-Gooey.md @@ -44,7 +44,7 @@ block_cipher = None a = Analysis( ['main.py'], # replace me with the main entry point - pathex=['/path/to/main.py'], # replace me with the appropriate path + pathex=['/path/to/'], # replace me with the appropriate path to main.py, but leave off filename. ... )