# HG changeset patch # User Volker Kleinfeld # Date 1130190750 25200 # Node ID a7631cf1326add2541e5d42a4eee773277fe8d94 # Parent b32b3509c7ab41a47f11834869a7805857627139 Option -i broken in py2exe_for_demandload Using the includes option -i on modified py2exe is not working. Change: - setup.py: convert self.includes to a list. diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -34,6 +34,8 @@ try: # Sets the 'includes' option with the list of needed modules if not self.includes: self.includes = [] + else: + self.includes = self.includes.split(',') self.includes += mercurial.packagescan.getmodules(self.build_lib, 'mercurial') self.includes += mercurial.packagescan.getmodules(self.build_lib,