Pavol Severa <[EMAIL PROTECTED]> wrote: > File "Build.py", line 536, in assemble > exe = checkCache(exe, self.strip, self.upx and config['hasUPX']) > File "Build.py", line 299, in checkCache > cachedir = os.path.join(HOMEPATH, 'bincache%d%d' % (strip, upx)) > TypeError: int argument required
Does it work if you change line 536 in Build.py to say: exe = checkCache(exe, self.strip, self.upx and bool(config['hasUPX'])) Oops, I wonder how this escaped my tests! Giovanni Bajo _______________________________________________ PyInstaller mailing list [email protected] http://lists.hpcf.upr.edu/mailman/listinfo/pyinstaller
