aboutsummaryrefslogtreecommitdiffstats
path: root/release/mitmdump.spec
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2015-03-12 13:26:21 +1100
committerAldo Cortesi <aldo@nullcube.com>2015-03-12 13:26:21 +1100
commitdfc1b391643d3e2d6b71d5844a48a197709ae469 (patch)
tree7cfa539e76360c7f952225fe5e6f7d753f11eacd /release/mitmdump.spec
parenta8c074054a99680eed550b2f1f585174685ee3db (diff)
downloadmitmproxy-dfc1b391643d3e2d6b71d5844a48a197709ae469.tar.gz
mitmproxy-dfc1b391643d3e2d6b71d5844a48a197709ae469.tar.bz2
mitmproxy-dfc1b391643d3e2d6b71d5844a48a197709ae469.zip
Update for latest master of PyInstaller
Diffstat (limited to 'release/mitmdump.spec')
-rw-r--r--release/mitmdump.spec5
1 files changed, 1 insertions, 4 deletions
diff --git a/release/mitmdump.spec b/release/mitmdump.spec
index a84908f5..1707122c 100644
--- a/release/mitmdump.spec
+++ b/release/mitmdump.spec
@@ -1,14 +1,12 @@
# -*- mode: python -*-
from glob import glob
-block_cipher = None
a = Analysis(['./mitmdump'],
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,