# HG changeset patch # User Will # Date 2005-11-16 19:53:16 # Node ID 18f3224da392089433211ce40090dbfda2c44a7b # Parent 4dea10839201e8b3f5d5a72a98cc368abfe1cb3b fix bug in setup.py introduced in r1508. The 'console' argument is expected to be a list of strings, but was changed to just a string. diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -75,7 +75,7 @@ try: py2exe_opts = {} if py2exe_for_demandload is not None: cmdclass['py2exe'] = py2exe_for_demandload - py2exe_opts['console'] = 'hg' + py2exe_opts['console'] = ['hg'] setup(name='mercurial', version=mercurial.version.get_version(), author='Matt Mackall',