# 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 -r b32b3509c7ab -r a7631cf1326a setup.py --- a/setup.py Mon Oct 24 14:34:48 2005 -0700 +++ b/setup.py Mon Oct 24 14:52:30 2005 -0700 @@ -34,6 +34,8 @@ # 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,