From eb7488b0a3b2df63e8bec9e207089a24bfeeafe4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D0=B5=D0=BC=D1=91=D0=BD=20=D0=9C=D0=B0=D1=80=D1=8C?= =?UTF-8?q?=D1=8F=D1=81=D0=B8=D0=BD?= Date: Tue, 16 Oct 2018 22:03:21 +0300 Subject: [PATCH] Fix TypeError The whole message was: ``` ... File "/tmp/env/lib/site-packages/isign/bundle.py", line 159, in sign TypeError: __init__() takes exactly 4 arguments (3 given) ``` --- isign/bundle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isign/bundle.py b/isign/bundle.py index dee5b048..7d00fcdb 100644 --- a/isign/bundle.py +++ b/isign/bundle.py @@ -151,7 +151,7 @@ def sign(self, signer): continue plist = biplist.readPlist(plist_path) appex_exec_path = join(appex_path, plist['CFBundleExecutable']) - appex = signable.Appex(self, appex_exec_path) + appex = signable.Appex(self, appex_exec_path, signer) appex.sign(self, signer) # then create the seal