diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-10-24 00:10:28 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-10-24 00:10:28 +0200 |
commit | dae69640d086ca1e2683ca81b60f48a0c6c83eac (patch) | |
tree | c4f782b680d83ff9f93fc25ab13c888261c0a06b | |
parent | edeb3e7cb1ab2d82ff7c712a7cc1e338a9dcd8f8 (diff) |
Fix py2exe build (#7276)
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ py2exe_options = { "compressed": 1, "optimize": 2, "dist_dir": '.', - "dll_excludes": ['w9xpopen.exe'], + "dll_excludes": ['w9xpopen.exe', 'crypt32.dll'], } py2exe_console = [{ |