diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-03-12 13:26:21 +1100 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-03-12 13:26:21 +1100 |
commit | dfc1b391643d3e2d6b71d5844a48a197709ae469 (patch) | |
tree | 7cfa539e76360c7f952225fe5e6f7d753f11eacd /release/mitmproxy.spec | |
parent | a8c074054a99680eed550b2f1f585174685ee3db (diff) | |
download | mitmproxy-dfc1b391643d3e2d6b71d5844a48a197709ae469.tar.gz mitmproxy-dfc1b391643d3e2d6b71d5844a48a197709ae469.tar.bz2 mitmproxy-dfc1b391643d3e2d6b71d5844a48a197709ae469.zip |
Update for latest master of PyInstaller
Diffstat (limited to 'release/mitmproxy.spec')
-rw-r--r-- | release/mitmproxy.spec | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/release/mitmproxy.spec b/release/mitmproxy.spec index 546c2899..cc324aa7 100644 --- a/release/mitmproxy.spec +++ b/release/mitmproxy.spec @@ -1,14 +1,12 @@ # -*- mode: python -*- from glob import glob -block_cipher = None a = Analysis(['./mitmproxy'], hiddenimports=[], hookspath=None, runtime_hooks=None, excludes=None, - cipher=block_cipher, ) a.datas = Tree( "./libmproxy/onboarding/templates", @@ -18,8 +16,7 @@ a.datas += Tree( "./libmproxy/onboarding/static", prefix="libmproxy/onboarding/static" ) -pyz = PYZ(a.pure, - cipher=block_cipher) +pyz = PYZ(a.pure) exe = EXE(pyz, a.scripts, a.binaries, |